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

Evan Cheng evan.cheng at apple.com
Wed Jun 4 11:09:20 PDT 2008


Author: evancheng
Date: Wed Jun  4 13:09:20 2008
New Revision: 51953

URL: http://llvm.org/viewvc/llvm-project?rev=51953&view=rev
Log:
Oops. Should not be enabled by default.

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=51953&r1=51952&r2=51953&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp (original)
+++ llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp Wed Jun  4 13:09:20 2008
@@ -39,7 +39,7 @@
               cl::desc("Perform sinking on machine code"));
 static cl::opt<bool>
 EnableStackColoring("stack-coloring",
-            cl::init(true), cl::Hidden,
+            cl::init(false), cl::Hidden,
             cl::desc("Perform stack slot coloring"));
 static cl::opt<bool>
 EnableLICM("machine-licm",





More information about the llvm-commits mailing list