Remove accidental check-ins in r65960. :-(
[oota-llvm.git] / lib / Transforms / Utils / SimplifyCFG.cpp
index 96cd299242da8464dbe84238345d557e908f1518..25579614ecfdf7f7cde8b2ea3fd4435e38c1b654 100644 (file)
@@ -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