[LiveIntervalAnalysis] Speed up creation of live ranges for physical registers
[oota-llvm.git] / include / llvm / CodeGen / CommandFlags.h
index 495efda61ab5b4aff06a6b212c23bc326eaf24d3..973c5954f9ad3a9c34e2cff5ced84cb605012e9a 100644 (file)
@@ -207,12 +207,6 @@ FunctionSections("function-sections",
                  cl::desc("Emit functions into separate sections"),
                  cl::init(false));
 
-cl::opt<bool>
-NoopInsertion("noop-insertion",
-             cl::desc("Randomly add Noop instructions to create fine-grained "
-                      "code layout diversity."),
-             cl::init(false));
-
 cl::opt<llvm::JumpTable::JumpTableType>
 JTableType("jump-table-type",
           cl::desc("Choose the type of Jump-Instruction Table for jumptable."),
@@ -290,7 +284,6 @@ static inline TargetOptions InitTargetOptionsFromCodeGenFlags() {
   Options.UseInitArray = !UseCtors;
   Options.DataSections = DataSections;
   Options.FunctionSections = FunctionSections;
-  Options.NoopInsertion = NoopInsertion;
 
   Options.MCOptions = InitMCTargetOptionsFromFlags();
   Options.JTType = JTableType;