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 | 15a3a49e199c3d7d9f15da0eded5a1edf94dc354 (patch) | |
tree | 2c9697442f85e991ac1e014c952000dc7f7ea1bb | |
parent | 30788b828a6101c6b20bedc59609dd5ce907a845 (diff) |
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
-rw-r--r-- | lib/Target/X86/X86InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.cpp b/lib/Target/X86/X86InstrInfo.cpp index b66cbd1881..cb12a9d53c 100644 --- a/lib/Target/X86/X86InstrInfo.cpp +++ b/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; } |