summaryrefslogtreecommitdiff
path: root/lib/CodeGen/StackSlotColoring.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2012-09-21 20:04:28 +0000
committerEvan Cheng <evan.cheng@apple.com>2012-09-21 20:04:28 +0000
commitbb36a438722d4d56febc07c6472c8446bb6faafe (patch)
treedc4087eac8744b01f28bc0db43904ac33b8d5115 /lib/CodeGen/StackSlotColoring.cpp
parentfdb6ec34cd378dd2acb8032f9210c94be3e88fe9 (diff)
downloadllvm-bb36a438722d4d56febc07c6472c8446bb6faafe.tar.gz
llvm-bb36a438722d4d56febc07c6472c8446bb6faafe.tar.bz2
llvm-bb36a438722d4d56febc07c6472c8446bb6faafe.tar.xz
Fix a significant recent(?) regression. StackSlotColoring no longer did anything
because LiveStackAnalysis was not preserved by VirtRegWriter. This caused big stack usage regression in some cases. rdar://12340383 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164408 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/StackSlotColoring.cpp')
-rw-r--r--lib/CodeGen/StackSlotColoring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/StackSlotColoring.cpp b/lib/CodeGen/StackSlotColoring.cpp
index 9d0fd0aa20..d349abc357 100644
--- a/lib/CodeGen/StackSlotColoring.cpp
+++ b/lib/CodeGen/StackSlotColoring.cpp
@@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//
-#define DEBUG_TYPE "stackcoloring"
+#define DEBUG_TYPE "stackslotcoloring"
#include "llvm/Module.h"
#include "llvm/CodeGen/Passes.h"
#include "llvm/CodeGen/LiveIntervalAnalysis.h"