1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

-fast is now -O0. -fast-isel is no longer experimental.

llvm-svn: 80104
This commit is contained in:
Dan Gohman 2009-08-26 15:57:57 +00:00
parent bd9174cad0
commit cd6a67f749

View File

@ -51,10 +51,10 @@ DisablePostRAScheduler("disable-post-RA-scheduler",
// 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,