[llvm-commits] [llvm] r102666 - /llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp

Dan Gohman gohman at apple.com
Thu Apr 29 16:25:34 PDT 2010


Author: djg
Date: Thu Apr 29 18:25:34 2010
New Revision: 102666

URL: http://llvm.org/viewvc/llvm-project?rev=102666&view=rev
Log:
Fix typos in assertion strings.

Modified:
    llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp

Modified: llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp?rev=102666&r1=102665&r2=102666&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp (original)
+++ llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp Thu Apr 29 18:25:34 2010
@@ -1512,7 +1512,7 @@
         }
 
         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 @@
       // 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");





More information about the llvm-commits mailing list