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 | a9fcf009a3b66f8bff7caabd30ab56aaeec40573 (patch) | |
tree | 8d88057db088b540c898c42fe11cc5f193da187a /llvm/lib/VMCore/Dominators.cpp | |
parent | 7147584d038213b6935a6adf9feccd298c1dd3d5 (diff) | |
download | bcm5719-llvm-a9fcf009a3b66f8bff7caabd30ab56aaeec40573.tar.gz bcm5719-llvm-a9fcf009a3b66f8bff7caabd30ab56aaeec40573.zip |
Dominance Frontier is cfg only pass.
llvm-svn: 51075
Diffstat (limited to 'llvm/lib/VMCore/Dominators.cpp')
-rw-r--r-- | llvm/lib/VMCore/Dominators.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Dominators.cpp b/llvm/lib/VMCore/Dominators.cpp index 5aa3f34e876..e9eca4eee4a 100644 --- a/llvm/lib/VMCore/Dominators.cpp +++ b/llvm/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. |