From 15a3a49e199c3d7d9f15da0eded5a1edf94dc354 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 23 Dec 2008 00:19:20 +0000 Subject: [PATCH] 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 --- lib/Target/X86/X86InstrInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/X86/X86InstrInfo.cpp b/lib/Target/X86/X86InstrInfo.cpp index b66cbd18812..cb12a9d53c9 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; }