diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-09-12 07:58:35 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-09-12 07:58:35 +0000 |
commit | dba5de5246f84fe50aef79e464e5aecdf5607ab4 (patch) | |
tree | 4dcc4f8aa5b005f8042afcaf3ada2546583d0630 | |
parent | 6d742cc61eb9c933a36f0bc96631fae95c6d3d2e (diff) |
Enable stack-coloring, in hope that the recent fixes will enable correct dragonegg self-hosting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163687 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/StackColoring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/StackColoring.cpp b/lib/CodeGen/StackColoring.cpp index 16b715a796..0deb35ad7f 100644 --- a/lib/CodeGen/StackColoring.cpp +++ b/lib/CodeGen/StackColoring.cpp @@ -59,7 +59,7 @@ using namespace llvm; static cl::opt<bool> DisableColoring("no-stack-coloring", - cl::init(true), cl::Hidden, + cl::init(false), cl::Hidden, cl::desc("Suppress stack coloring")); STATISTIC(NumMarkerSeen, "Number of life markers found."); |