* Store all non-volatile int registers R13-31 on the stack, restore on exit
[oota-llvm.git] / lib / Target / TargetMachine.cpp
index f5bbdd15d5eca26f4a586a58bd57e513656241f4..d71bd3f9542f0bdbf0f710297c0d7720ff37eb49 100644 (file)
@@ -11,9 +11,9 @@
 //
 //===----------------------------------------------------------------------===//
 
+#include "llvm/Target/TargetMachine.h"
 #include "llvm/Type.h"
 #include "llvm/CodeGen/IntrinsicLowering.h"
-#include "llvm/Target/TargetMachine.h"
 #include "Support/CommandLine.h"
 using namespace llvm;
 
@@ -21,11 +21,10 @@ using namespace llvm;
 // Command-line options that tend to be useful on more than one back-end.
 //
 
-namespace llvm { 
+namespace llvm {
   bool PrintMachineCode;
-  bool NoFPElim;
+  bool NoFramePointerElim;
 };
-
 namespace {
   cl::opt<bool, true> PrintCode("print-machineinstrs",
     cl::desc("Print generated machine code"),
@@ -34,7 +33,8 @@ namespace {
   cl::opt<bool, true> 
     DisableFPElim("disable-fp-elim",
                   cl::desc("Disable frame pointer elimination optimization"),
-                  cl::location(NoFPElim), cl::init(false));
+                  cl::location(NoFramePointerElim),
+                  cl::init(false));
 };
 
 //---------------------------------------------------------------------------