aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLogan Chien <loganchien@google.com>2013-02-02 13:48:30 +0800
committerLogan Chien <loganchien@google.com>2013-02-02 13:48:30 +0800
commitdb9a69e671f99efe665ffea524948374c0696b5c (patch)
treeb24cf352b0c2e762f460ca099c9844b9a7b16a6b /lib
parent56b35d5de28a62f215e640309f025fdbf3874460 (diff)
downloadllvm-db9a69e671f99efe665ffea524948374c0696b5c.tar.gz
Workaround for test-stlport on armv5te for clang 3.2.
[WORK IN PROGRESS] It seems that there are some problem with the stack coloring algorithm for armv5te. If we enable the stack coloring, then we will face SEGV when we are building test-stlport. I will try to investigate the root cause of the problem. Change-Id: I2f077784af51fb7c7591158d0f5dd1866033a528
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/StackColoring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/StackColoring.cpp b/lib/CodeGen/StackColoring.cpp
index 1cbee843a12..4caffbf666d 100644
--- a/lib/CodeGen/StackColoring.cpp
+++ b/lib/CodeGen/StackColoring.cpp
@@ -60,7 +60,7 @@ using namespace llvm;
static cl::opt<bool>
DisableColoring("no-stack-coloring",
- cl::init(false), cl::Hidden,
+ cl::init(true), cl::Hidden,
cl::desc("Disable stack coloring"));
/// The user may write code that uses allocas outside of the declared lifetime