diff options
author | Dan Gohman <gohman@apple.com> | 2008-06-25 22:14:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-06-25 22:14:43 +0000 |
commit | 39b07db75ad707eb50873811b3b2d7b60569a463 (patch) | |
tree | 8191654c07bf5447e7efabc821b4a57faac5afee /llvm/lib/CodeGen/LiveVariables.cpp | |
parent | 3185c9c9cdc7b06c9a3773ab57527aac5e2c4060 (diff) | |
download | llvm-39b07db75ad707eb50873811b3b2d7b60569a463.zip llvm-39b07db75ad707eb50873811b3b2d7b60569a463.tar.gz llvm-39b07db75ad707eb50873811b3b2d7b60569a463.tar.bz2 |
Fix the text in an assert string.
llvm-svn: 52744
Diffstat (limited to 'llvm/lib/CodeGen/LiveVariables.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveVariables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveVariables.cpp b/llvm/lib/CodeGen/LiveVariables.cpp index bc73b684..f3a92f2 100644 --- a/llvm/lib/CodeGen/LiveVariables.cpp +++ b/llvm/lib/CodeGen/LiveVariables.cpp @@ -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. |