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 | 80e43fa74494ce1adbc727b4b5f1541da2c0c555 (patch) | |
tree | 1421872a29789682d9349a16d4f4a0790975d0bb /llvm/lib/Analysis/ProfileInfoLoaderPass.cpp | |
parent | 7a3e750fd24619f60d68f05b2605ecb3196bb6d3 (diff) | |
download | bcm5719-llvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.tar.gz bcm5719-llvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.zip |
Restore isCFGOnly property of various analysis passes.
llvm-svn: 48579
Diffstat (limited to 'llvm/lib/Analysis/ProfileInfoLoaderPass.cpp')
-rw-r--r-- | llvm/lib/Analysis/ProfileInfoLoaderPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp b/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp index 9efb312d78f..07d96821aba 100644 --- a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp +++ b/llvm/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 |