/// DisableJumpTables - This flag indicates jump tables should not be
/// generated.
extern bool DisableJumpTables;
-
- /// DisableCorrectBranchFolding - This flag indicates whether the instruction
- /// selector should take care to update the CFG properly when
- /// folding branches.
- extern bool DisableCorrectBranchFolding;
} // End llvm namespace
#endif
EnableValueProp("enable-value-prop", cl::Hidden);
static cl::opt<bool>
EnableLegalizeTypes("enable-legalize-types", cl::Hidden);
+static cl::opt<bool>
+DisableCorrectBranchFolding("disable-correct-folding", cl::init(false),
+ cl::Hidden);
#ifndef NDEBUG
bool RealignStack;
bool VerboseAsm;
bool DisableJumpTables;
- bool DisableCorrectBranchFolding;
}
static cl::opt<bool, true> PrintCode("print-machineinstrs",
cl::location(DisableJumpTables),
cl::init(false));
-static cl::opt<bool, true>
-DisableCorrectISelFolding(cl::Hidden, "disable-correct-folding",
-cl::desc("Do not perform correct branch folding in the instruction selector."),
-cl::location(DisableCorrectBranchFolding), cl::init(false));
-
//---------------------------------------------------------------------------
// TargetMachine Class
//