diff options
| author | Dan Gohman <gohman@apple.com> | 2008-12-23 00:19:20 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-12-23 00:19:20 +0000 |
| commit | d72358cba8f70912b05f210db5184332479ebc1a (patch) | |
| tree | 1600b6e10d85abad478abc4bf5c13e978f6df40e | |
| parent | daef00bca6c92b08594f7fe40fcd80d2c7b9c452 (diff) | |
| download | bcm5719-llvm-d72358cba8f70912b05f210db5184332479ebc1a.tar.gz bcm5719-llvm-d72358cba8f70912b05f210db5184332479ebc1a.zip | |
Make the fuse-failed debug output human-readable.
llvm-svn: 61356
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.cpp b/llvm/lib/Target/X86/X86InstrInfo.cpp index b66cbd18812..cb12a9d53c9 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.cpp +++ b/llvm/lib/Target/X86/X86InstrInfo.cpp @@ -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; } |

