diff options
| author | Bill Wendling <isanbard@gmail.com> | 2009-03-03 19:25:16 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2009-03-03 19:25:16 +0000 |
| commit | 7fcd6148f7ce43dac07b03185c6e5c94dc924606 (patch) | |
| tree | e3932be43f1ce0c94b46eedb1eb0b7cfd708c3cb /llvm/lib/Transforms/Utils | |
| parent | a68fc7af63f744fb2e7407ff630044c3e9a418a5 (diff) | |
| download | bcm5719-llvm-7fcd6148f7ce43dac07b03185c6e5c94dc924606.tar.gz bcm5719-llvm-7fcd6148f7ce43dac07b03185c6e5c94dc924606.zip | |
Remove accidental check-ins in r65960. :-(
llvm-svn: 65961
Diffstat (limited to 'llvm/lib/Transforms/Utils')
| -rw-r--r-- | llvm/lib/Transforms/Utils/SimplifyCFG.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/llvm/lib/Transforms/Utils/SimplifyCFG.cpp b/llvm/lib/Transforms/Utils/SimplifyCFG.cpp index 96cd299242d..25579614ecf 100644 --- a/llvm/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/llvm/lib/Transforms/Utils/SimplifyCFG.cpp @@ -33,10 +33,6 @@ using namespace llvm; STATISTIC(NumSpeculations, "Number of speculative executed instructions"); -#include "llvm/Support/CommandLine.h" -static cl::opt<bool> -DisableXForm("disable-xform", cl::Hidden, cl::init(false)); - /// SafeToMergeTerminators - Return true if it is safe to merge these two /// terminator instructions together. /// @@ -1786,7 +1782,7 @@ bool llvm::SimplifyCFG(BasicBlock *BB) { } // If we found some, do the transformation! - if (!UncondBranchPreds.empty() && !DisableXForm) { + if (!UncondBranchPreds.empty()) { while (!UncondBranchPreds.empty()) { BasicBlock *Pred = UncondBranchPreds.back(); DOUT << "FOLDING: " << *BB |

