diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-12-10 23:14:35 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-12-10 23:14:35 +0000 |
commit | a0bb037283341912c680cc9a82f3586c763345f9 (patch) | |
tree | 41ec4c076950728ca3e66a3d4469154c9256bc38 /lib | |
parent | 5a4308bca86728767ea5d9e5df8d8e3351e33c9a (diff) | |
download | external_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.cpp | 2 |
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); |