Thumb2 assembly parsing and encoding for SXTB/SXTB16/SXTH.
[oota-llvm.git] / lib / Target / TargetMachine.cpp
index f74c8c3ecb6a42413a6081ddd849888c375bdff2..fe8a7cebd0a0113e3f9b8a05b1a3be9fa256d876 100644 (file)
@@ -47,6 +47,7 @@ namespace llvm {
   bool StrongPHIElim;
   bool HasDivModLibcall;
   bool AsmVerbosityDefault(false);
+  bool EnableSegmentedStacks;
 }
 
 static cl::opt<bool, true>
@@ -178,6 +179,12 @@ static cl::opt<bool>
 FunctionSections("ffunction-sections",
   cl::desc("Emit functions into separate sections"),
   cl::init(false));
+static cl::opt<bool, true>
+SegmentedStacks("segmented-stacks",
+  cl::desc("Use segmented stacks if possible."),
+  cl::location(EnableSegmentedStacks),
+  cl::init(false));
+                         
 //---------------------------------------------------------------------------
 // TargetMachine Class
 //