diff options
author | Devang Patel <dpatel@apple.com> | 2008-05-13 22:43:21 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-05-13 22:43:21 +0000 |
commit | 2527e884169eee65f790a16b81daca2d5652eb6d (patch) | |
tree | 25aafea4a1ac3463abed7fc32368be55b738cafe /lib | |
parent | ff5a535378f700bf5e48ef17ad74eac21669b78d (diff) | |
download | external_llvm-2527e884169eee65f790a16b81daca2d5652eb6d.zip external_llvm-2527e884169eee65f790a16b81daca2d5652eb6d.tar.gz external_llvm-2527e884169eee65f790a16b81daca2d5652eb6d.tar.bz2 |
Dominance Frontier is cfg only pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51075 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/VMCore/Dominators.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp index 5aa3f34..e9eca4e 100644 --- a/lib/VMCore/Dominators.cpp +++ b/lib/VMCore/Dominators.cpp @@ -67,7 +67,7 @@ bool DominatorTree::runOnFunction(Function &F) { char DominanceFrontier::ID = 0; static RegisterPass<DominanceFrontier> -G("domfrontier", "Dominance Frontier Construction", false, true); +G("domfrontier", "Dominance Frontier Construction", true, true); // NewBB is split and now it has one successor. Update dominace frontier to // reflect this change. |