diff options
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/TargetMachine.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index 6e8831bf1f9..342aa0175df 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -45,10 +45,10 @@ static cl::opt<bool, true> PrintCode("print-machineinstrs",    cl::location(PrintMachineCode), cl::init(false));  static cl::opt<bool, true> -  DisableFPElim("disable-fp-elim", -                cl::desc("Disable frame pointer elimination optimization"), -                cl::location(NoFramePointerElim), -                cl::init(false)); +DisableFPElim("disable-fp-elim", +              cl::desc("Disable frame pointer elimination optimization"), +              cl::location(NoFramePointerElim), +              cl::init(false));  static cl::opt<bool, true>  DisableExcessPrecision("disable-excess-fp-precision",               cl::desc("Disable optimizations that may increase FP precision"), @@ -135,8 +135,8 @@ EnablePerformTailCallOpt("tailcallopt",  static cl::opt<bool, true>  EnableOptimizeForSize("optimize-size",                        cl::desc("Optimize for size."), -                         cl::location(OptimizeForSize), -                         cl::init(false)); +                      cl::location(OptimizeForSize), +                      cl::init(false));  static cl::opt<bool, true>  EnableRealignStack("realign-stack",  | 

