diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-08 05:41:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-08 05:41:26 +0000 |
commit | 5040f58ae437ccdf0fd97b418a3cc08c2f4b83c4 (patch) | |
tree | 9095ac394fdd8d37a55ea5910fb67dd3dd0d2875 | |
parent | 196d51766714c6c3774e041509310609ee344775 (diff) | |
download | bcm5719-llvm-5040f58ae437ccdf0fd97b418a3cc08c2f4b83c4.tar.gz bcm5719-llvm-5040f58ae437ccdf0fd97b418a3cc08c2f4b83c4.zip |
Fix a bug introduced by the streams patch. DEBUG code was made unconditional.
llvm-svn: 32351
-rw-r--r-- | llvm/lib/Target/X86/X86FloatingPoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86FloatingPoint.cpp b/llvm/lib/Target/X86/X86FloatingPoint.cpp index 180e846e04d..b70b6e29712 100644 --- a/llvm/lib/Target/X86/X86FloatingPoint.cpp +++ b/llvm/lib/Target/X86/X86FloatingPoint.cpp @@ -210,7 +210,7 @@ bool FPS::processBasicBlock(MachineFunction &MF, MachineBasicBlock &BB) { PrevMI = prior(I); ++NumFP; // Keep track of # of pseudo instrs - DOUT << "\nFPInst:\t"; MI->print(*cerr.stream(), &(MF.getTarget())); + DOUT << "\nFPInst:\t" << *MI; // Get dead variables list now because the MI pointer may be deleted as part // of processing! |