[llvm-commits] [llvm] r52744 - /llvm/trunk/lib/CodeGen/LiveVariables.cpp

Dan Gohman gohman at apple.com
Wed Jun 25 15:14:54 PDT 2008


Author: djg
Date: Wed Jun 25 17:14:43 2008
New Revision: 52744

URL: http://llvm.org/viewvc/llvm-project?rev=52744&view=rev
Log:
Fix the text in an assert string.

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

Modified: llvm/trunk/lib/CodeGen/LiveVariables.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveVariables.cpp?rev=52744&r1=52743&r2=52744&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/LiveVariables.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveVariables.cpp Wed Jun 25 17:14:43 2008
@@ -602,7 +602,7 @@
            I = MF->getRegInfo().liveout_begin(),
            E = MF->getRegInfo().liveout_end(); I != E; ++I) {
         assert(TargetRegisterInfo::isPhysicalRegister(*I) &&
-               "Cannot have a live-in virtual register!");
+               "Cannot have a live-out virtual register!");
         HandlePhysRegUse(*I, Ret);
 
         // Add live-out registers as implicit uses.





More information about the llvm-commits mailing list