From: Nadav Rotem Date: Tue, 11 Sep 2012 15:40:27 +0000 (+0000) Subject: Dragonegg selfhost exposed additional cases where alloca usage moved outside of lifet... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1eba4a7a28f7e0156725518783dc35137869a670;p=oota-llvm.git Dragonegg selfhost exposed additional cases where alloca usage moved outside of lifetime markers. Disabling the pass for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163623 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/StackColoring.cpp b/lib/CodeGen/StackColoring.cpp index 0c2c8e34f84..6df932c1ae0 100644 --- a/lib/CodeGen/StackColoring.cpp +++ b/lib/CodeGen/StackColoring.cpp @@ -59,7 +59,7 @@ using namespace llvm; static cl::opt DisableColoring("no-stack-coloring", - cl::init(false), cl::Hidden, + cl::init(true), cl::Hidden, cl::desc("Suppress stack coloring")); STATISTIC(NumMarkerSeen, "Number of life markers found.");