aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/RegAllocPBQP.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-08 00:40:46 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-08 00:40:46 +0000
commit8a1871d10b3c8cdbac9b8378eebd95461790d1e6 (patch)
tree3c6ece6c11290bcff247ef55b78b8e1093eeaba9 /lib/CodeGen/RegAllocPBQP.cpp
parente2652f2cd3f3b34e87f57238dee5006c8f7d672e (diff)
downloadexternal_llvm-8a1871d10b3c8cdbac9b8378eebd95461790d1e6.zip
external_llvm-8a1871d10b3c8cdbac9b8378eebd95461790d1e6.tar.gz
external_llvm-8a1871d10b3c8cdbac9b8378eebd95461790d1e6.tar.bz2
Fix some -Asserts unused variable warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78447 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocPBQP.cpp')
-rw-r--r--lib/CodeGen/RegAllocPBQP.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/RegAllocPBQP.cpp b/lib/CodeGen/RegAllocPBQP.cpp
index 63c7d3d..e0aea98 100644
--- a/lib/CodeGen/RegAllocPBQP.cpp
+++ b/lib/CodeGen/RegAllocPBQP.cpp
@@ -682,6 +682,7 @@ void PBQPRegAlloc::addStackInterval(const LiveInterval *spilled,
bool PBQPRegAlloc::mapPBQPToRegAlloc(const PBQP::Solution &solution) {
static unsigned round = 0;
+ (void) round;
// Set to true if we have any spills
bool anotherRoundNeeded = false;