From a0bb037283341912c680cc9a82f3586c763345f9 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Fri, 10 Dec 2010 23:14:35 +0000 Subject: [PATCH] Remove extraneous close parenthesis. Fix build breakage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121596 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/RegAllocGreedy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp index e88016fbb37..af2c55e7d89 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);