From bb8610635f384f51969376238c53595761d814bf 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. llvm-svn: 121596 --- llvm/lib/CodeGen/RegAllocGreedy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/RegAllocGreedy.cpp b/llvm/lib/CodeGen/RegAllocGreedy.cpp index e88016fbb374..af2c55e7d89c 100644 --- a/llvm/lib/CodeGen/RegAllocGreedy.cpp +++ b/llvm/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);