diff options
author | Devang Patel <dpatel@apple.com> | 2008-03-20 02:25:21 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-03-20 02:25:21 +0000 |
commit | 4f4c28f75f74fe557efb63feaf5f4f8bf639dcd5 (patch) | |
tree | 7cdfae80ae3a817ab7cc0304e1f7a4ae3774f26a /lib/Analysis/ProfileInfoLoaderPass.cpp | |
parent | 260e07ec8ceb98337a9eeb5377d97dfcc0058a25 (diff) | |
download | external_llvm-4f4c28f75f74fe557efb63feaf5f4f8bf639dcd5.zip external_llvm-4f4c28f75f74fe557efb63feaf5f4f8bf639dcd5.tar.gz external_llvm-4f4c28f75f74fe557efb63feaf5f4f8bf639dcd5.tar.bz2 |
Restore isCFGOnly property of various analysis passes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48579 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ProfileInfoLoaderPass.cpp')
-rw-r--r-- | lib/Analysis/ProfileInfoLoaderPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ProfileInfoLoaderPass.cpp b/lib/Analysis/ProfileInfoLoaderPass.cpp index 9efb312..07d9682 100644 --- a/lib/Analysis/ProfileInfoLoaderPass.cpp +++ b/lib/Analysis/ProfileInfoLoaderPass.cpp @@ -52,7 +52,7 @@ namespace { char LoaderPass::ID = 0; RegisterPass<LoaderPass> - X("profile-loader", "Load profile information from llvmprof.out", true, true); + X("profile-loader", "Load profile information from llvmprof.out", false, true); RegisterAnalysisGroup<ProfileInfo> Y(X); } // End of anonymous namespace |