aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-06-04 18:09:20 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-06-04 18:09:20 +0000
commit75bb734f1d4d50ebb377bd030e2ee002a09be673 (patch)
treed3784c6fd0732fc7b93de26a0c8a08361e61b002 /lib/CodeGen/LLVMTargetMachine.cpp
parent67f631dfd50ddbbe22995bc3233f9e8d32bdf33f (diff)
Oops. Should not be enabled by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r--lib/CodeGen/LLVMTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp
index 73f2902d9a..d3e8e4904f 100644
--- a/lib/CodeGen/LLVMTargetMachine.cpp
+++ b/lib/CodeGen/LLVMTargetMachine.cpp
@@ -39,7 +39,7 @@ EnableSinking("enable-sinking", cl::init(false), cl::Hidden,
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",