Make the fuse-failed debug output human-readable.
authorDan Gohman <gohman@apple.com>
Tue, 23 Dec 2008 00:19:20 +0000 (00:19 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 23 Dec 2008 00:19:20 +0000 (00:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61356 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86InstrInfo.cpp

index b66cbd188125160049bf3db8276a872300c769cb..cb12a9d53c958f5a3a86a5444394f0e8d561e009 100644 (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;
 }