diff options
author | Lang Hames <lhames@gmail.com> | 2012-01-03 20:05:57 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2012-01-03 20:05:57 +0000 |
commit | 567cdbab28077ea1801ebff3d4291d4006d88ca3 (patch) | |
tree | af3ea886b20548a7619fa2c61ec1e6961b4bd17c /lib/CodeGen | |
parent | 2b29d233b94d0310d9016bf49b31a7bacb25ef26 (diff) |
Clarified assert text.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 1e58173c18..9ee7c0b537 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -646,7 +646,7 @@ bool LiveIntervals::shrinkToUses(LiveInterval *li, SmallVectorImpl<MachineInstr*> *dead) { DEBUG(dbgs() << "Shrink: " << *li << '\n'); assert(TargetRegisterInfo::isVirtualRegister(li->reg) - && "Can't only shrink physical registers"); + && "Can only shrink virtual registers"); // Find all the values used, including PHI kills. SmallVector<std::pair<SlotIndex, VNInfo*>, 16> WorkList; |