Fix the text in an assert string.
authorDan Gohman <gohman@apple.com>
Wed, 25 Jun 2008 22:14:43 +0000 (22:14 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 25 Jun 2008 22:14:43 +0000 (22:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52744 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/LiveVariables.cpp

index bc73b6841c4db9584ec99765a6fdacd725e8090f..f3a92f2f1c8cf14f6f7fdcc062254d7ad9fcd055 100644 (file)
@@ -602,7 +602,7 @@ bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
            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.