aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-06-25 22:14:43 +0000
committerDan Gohman <gohman@apple.com>2008-06-25 22:14:43 +0000
commit2d70201e8e52f22f05c384fe336dc60d0b7134af (patch)
tree9e44c19e31308bded9b6f950a6615fe02bd499db /lib
parent57db53ba66a5d7dfc7361df50bdf635fa94f4743 (diff)
downloadexternal_llvm-2d70201e8e52f22f05c384fe336dc60d0b7134af.tar.gz
external_llvm-2d70201e8e52f22f05c384fe336dc60d0b7134af.tar.bz2
external_llvm-2d70201e8e52f22f05c384fe336dc60d0b7134af.zip
Fix the text in an assert string.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52744 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/LiveVariables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveVariables.cpp b/lib/CodeGen/LiveVariables.cpp
index bc73b6841c..f3a92f2f1c 100644
--- a/lib/CodeGen/LiveVariables.cpp
+++ b/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.