diff options
author | Chris Lattner <sabre@nondot.org> | 2002-01-21 01:33:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-01-21 01:33:12 +0000 |
commit | 73da1cea603554fc47eb49093f97b2bb91a0deec (patch) | |
tree | 8b47ef0cf80e9b23bf4cf977203a46b574ab4415 /llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp | |
parent | 7f74a56e2436c40b18a672ad7d58727cd6832329 (diff) | |
download | bcm5719-llvm-73da1cea603554fc47eb49093f97b2bb91a0deec.tar.gz bcm5719-llvm-73da1cea603554fc47eb49093f97b2bb91a0deec.zip |
Oops lost a parenthesis somehow :(
llvm-svn: 1504
Diffstat (limited to 'llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp index e2d455bad9d..208d9bcbb07 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp +++ b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp @@ -996,7 +996,7 @@ void PhyRegAlloc::printMachineCode() } // if a label or a constant - if(isa<BasicBlock>(Val) { + if(isa<BasicBlock>(Val)) { cerr << "\t"; printLabel( Op.getVRegValue () ); } else { // else it must be a register value |