From: Evan Cheng Date: Wed, 4 Jun 2008 18:09:20 +0000 (+0000) Subject: Oops. Should not be enabled by default. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=75bb734f1d4d50ebb377bd030e2ee002a09be673;p=oota-llvm.git Oops. Should not be enabled by default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51953 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index 73f2902d9a0..d3e8e4904fe 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 EnableStackColoring("stack-coloring", - cl::init(true), cl::Hidden, + cl::init(false), cl::Hidden, cl::desc("Perform stack slot coloring")); static cl::opt EnableLICM("machine-licm",