diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-09-11 15:40:27 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-09-11 15:40:27 +0000 |
commit | 42b641c8791a9379b6a6dc072f513290220437df (patch) | |
tree | d1805740a695f2151c578645b0998e08cdc85c03 | |
parent | 788eaeb35b6c95fbb3ff832dc4a7ace978b00323 (diff) | |
download | bcm5719-llvm-42b641c8791a9379b6a6dc072f513290220437df.tar.gz bcm5719-llvm-42b641c8791a9379b6a6dc072f513290220437df.zip |
Dragonegg selfhost exposed additional cases where alloca usage moved outside of lifetime markers. Disabling the pass for now.
llvm-svn: 163623
-rw-r--r-- | llvm/lib/CodeGen/StackColoring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/StackColoring.cpp b/llvm/lib/CodeGen/StackColoring.cpp index 0c2c8e34f84..6df932c1ae0 100644 --- a/llvm/lib/CodeGen/StackColoring.cpp +++ b/llvm/lib/CodeGen/StackColoring.cpp @@ -59,7 +59,7 @@ using namespace llvm; static cl::opt<bool> 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."); |