diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-29 23:25:34 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-29 23:25:34 +0000 |
commit | a555ac9d157a999eaa0c8eed58e13849abfa3a53 (patch) | |
tree | 0373642d98312ad80f4492c41fc9996346c82376 /lib/CodeGen/SimpleRegisterCoalescing.cpp | |
parent | 02104df05f97fd7f4d477376bdfa2f1b7a327a15 (diff) |
Fix typos in assertion strings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102666 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SimpleRegisterCoalescing.cpp')
-rw-r--r-- | lib/CodeGen/SimpleRegisterCoalescing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SimpleRegisterCoalescing.cpp b/lib/CodeGen/SimpleRegisterCoalescing.cpp index 768975934f..e7c758db09 100644 --- a/lib/CodeGen/SimpleRegisterCoalescing.cpp +++ b/lib/CodeGen/SimpleRegisterCoalescing.cpp @@ -1512,7 +1512,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) { } if (!isWinToJoinCrossClass(SrcReg, DstReg, SrcRC, DstRC, NewRC)) { - DEBUG(dbgs() << "\tAvoid coalescing to constrainted register class: " + DEBUG(dbgs() << "\tAvoid coalescing to constrained register class: " << SrcRC->getName() << "/" << DstRC->getName() << " -> " << NewRC->getName() << ".\n"); @@ -1586,7 +1586,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) { // class is more restrictive (fewer register, smaller size). Check if it's // worth doing the merge. if (!isWinToJoinCrossClass(SrcReg, DstReg, SrcRC, DstRC, NewRC)) { - DEBUG(dbgs() << "\tAvoid coalescing to constrainted register class: " + DEBUG(dbgs() << "\tAvoid coalescing to constrained register class: " << SrcRC->getName() << "/" << DstRC->getName() << " -> " << NewRC->getName() << ".\n"); |