diff options
Diffstat (limited to 'lib/CodeGen/RegAllocGreedy.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocGreedy.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp index 12a1cfcc90..50e4546660 100644 --- a/lib/CodeGen/RegAllocGreedy.cpp +++ b/lib/CodeGen/RegAllocGreedy.cpp @@ -310,6 +310,7 @@ unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order, for (unsigned i = 0, e = SplitLoops.size(); i != e; ++i) { if (unsigned PhysReg = findInterferenceFreeReg(SplitLoops[i], VirtReg, Order)) { + (void)PhysReg; Loop = SplitLoops[i]; DEBUG(dbgs() << " " << TRI->getName(PhysReg) << " has no interferences in " << *Loop << '\n'); |