[llvm-commits] [llvm] r156521 - /llvm/trunk/utils/TableGen/CodeGenRegisters.cpp
Jakob Stoklund Olesen
stoklund at 2pi.dk
Wed May 9 16:43:30 PDT 2012
Author: stoklund
Date: Wed May 9 18:43:30 2012
New Revision: 156521
URL: http://llvm.org/viewvc/llvm-project?rev=156521&view=rev
Log:
Fix warning text.
Modified:
llvm/trunk/utils/TableGen/CodeGenRegisters.cpp
Modified: llvm/trunk/utils/TableGen/CodeGenRegisters.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/CodeGenRegisters.cpp?rev=156521&r1=156520&r2=156521&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/CodeGenRegisters.cpp (original)
+++ llvm/trunk/utils/TableGen/CodeGenRegisters.cpp Wed May 9 18:43:30 2012
@@ -891,7 +891,7 @@
if (i1d->second == Reg3) {
// Conflicting composition? Emit a warning but allow it.
if (CodeGenSubRegIndex *Prev = Idx1->addComposite(Idx2, i1d->first))
- PrintWarning(Twine("SubRegIndex") + Idx1->getQualifiedName() +
+ PrintWarning(Twine("SubRegIndex ") + Idx1->getQualifiedName() +
" and " + Idx2->getQualifiedName() +
" compose ambiguously as " + Prev->getQualifiedName() +
" or " + i1d->first->getQualifiedName());
More information about the llvm-commits
mailing list