summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Utils
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-03-03 19:25:16 +0000
committerBill Wendling <isanbard@gmail.com>2009-03-03 19:25:16 +0000
commit7fcd6148f7ce43dac07b03185c6e5c94dc924606 (patch)
treee3932be43f1ce0c94b46eedb1eb0b7cfd708c3cb /llvm/lib/Transforms/Utils
parenta68fc7af63f744fb2e7407ff630044c3e9a418a5 (diff)
downloadbcm5719-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.cpp6
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
OpenPOWER on IntegriCloud