[llvm-commits] [llvm] r80104 - /llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp

Dan Gohman gohman at apple.com
Wed Aug 26 08:57:57 PDT 2009


Author: djg
Date: Wed Aug 26 10:57:57 2009
New Revision: 80104

URL: http://llvm.org/viewvc/llvm-project?rev=80104&view=rev
Log:
-fast is now -O0. -fast-isel is no longer experimental.

Modified:
    llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp

Modified: llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp?rev=80104&r1=80103&r2=80104&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp (original)
+++ llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp Wed Aug 26 10:57:57 2009
@@ -51,10 +51,10 @@
 
 // Enable or disable FastISel. Both options are needed, because
 // FastISel is enabled by default with -fast, and we wish to be
-// able to enable or disable fast-isel independently from -fast.
+// able to enable or disable fast-isel independently from -O0.
 static cl::opt<cl::boolOrDefault>
 EnableFastISelOption("fast-isel", cl::Hidden,
-  cl::desc("Enable the experimental \"fast\" instruction selector"));
+  cl::desc("Enable the \"fast\" instruction selector"));
 
 
 LLVMTargetMachine::LLVMTargetMachine(const Target &T,





More information about the llvm-commits mailing list