From: Lang Hames Date: Tue, 3 Jan 2012 20:05:57 +0000 (+0000) Subject: Clarified assert text. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=567cdbab28077ea1801ebff3d4291d4006d88ca3;p=oota-llvm.git Clarified assert text. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147471 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 1e58173c186..9ee7c0b537e 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -646,7 +646,7 @@ bool LiveIntervals::shrinkToUses(LiveInterval *li, SmallVectorImpl *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, 16> WorkList;