Make the fuse-failed debug output human-readable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61356 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-12-23 00:19:20 +00:00
parent 30788b828a
commit 15a3a49e19

View File

@ -2029,7 +2029,7 @@ X86InstrInfo::foldMemoryOperandImpl(MachineFunction &MF,
// No fusion
if (PrintFailedFusing)
cerr << "We failed to fuse operand " << i << *MI;
cerr << "We failed to fuse operand " << i << " in " << *MI;
return NULL;
}