From: Dan Gohman Date: Thu, 29 Apr 2010 23:25:34 +0000 (+0000) Subject: Fix typos in assertion strings. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a555ac9d157a999eaa0c8eed58e13849abfa3a53;p=oota-llvm.git Fix typos in assertion strings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102666 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SimpleRegisterCoalescing.cpp b/lib/CodeGen/SimpleRegisterCoalescing.cpp index 768975934f2..e7c758db092 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");