summaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAllocGreedy.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2013-09-10 23:18:14 +0000
committerEli Friedman <eli.friedman@gmail.com>2013-09-10 23:18:14 +0000
commitae43dac30037395cce2b54af0a02500985813183 (patch)
tree4dc016550cfafdf7f4bcf2620c8b26c9e553adb1 /lib/CodeGen/RegAllocGreedy.cpp
parent5912a125193b39916a8ea81fe75502869f1b3ef5 (diff)
downloadllvm-ae43dac30037395cce2b54af0a02500985813183.tar.gz
llvm-ae43dac30037395cce2b54af0a02500985813183.tar.bz2
llvm-ae43dac30037395cce2b54af0a02500985813183.tar.xz
Fix unused variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190448 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocGreedy.cpp')
-rw-r--r--lib/CodeGen/RegAllocGreedy.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp
index d7a3d26bf7..f094c4ca3f 100644
--- a/lib/CodeGen/RegAllocGreedy.cpp
+++ b/lib/CodeGen/RegAllocGreedy.cpp
@@ -120,7 +120,9 @@ class RAGreedy : public MachineFunctionPass,
RS_Done
};
+#ifndef NDEBUG
static const char *const StageName[];
+#endif
// RegInfo - Keep additional information about each live range.
struct RegInfo {