summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2010-12-10 23:14:35 +0000
committerNick Lewycky <nicholas@mxc.ca>2010-12-10 23:14:35 +0000
commita0bb037283341912c680cc9a82f3586c763345f9 (patch)
tree41ec4c076950728ca3e66a3d4469154c9256bc38 /lib
parent5a4308bca86728767ea5d9e5df8d8e3351e33c9a (diff)
downloadexternal_llvm-a0bb037283341912c680cc9a82f3586c763345f9.zip
external_llvm-a0bb037283341912c680cc9a82f3586c763345f9.tar.gz
external_llvm-a0bb037283341912c680cc9a82f3586c763345f9.tar.bz2
Remove extraneous close parenthesis.
Fix build breakage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121596 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/RegAllocGreedy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp
index e88016f..af2c55e 100644
--- a/lib/CodeGen/RegAllocGreedy.cpp
+++ b/lib/CodeGen/RegAllocGreedy.cpp
@@ -232,7 +232,7 @@ unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg,
// Check for an available register in this class.
DEBUG({
const TargetRegisterClass *TRC = MRI->getRegClass(VirtReg.reg);
- dbgs() << "RegClass: " << TRC->getName() << ' ');
+ dbgs() << "RegClass: " << TRC->getName() << ' ';
});
AllocationOrder Order(VirtReg.reg, *VRM, ReservedRegs);