diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-06-02 05:55:25 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-06-02 05:55:25 +0000 |
| commit | 82baa9c39411ee5bf1a035742cc2ff69bc40641b (patch) | |
| tree | 08213ed8d00773acba336116258681156abad4e5 /llvm/lib/Target/X86/FloatingPoint.cpp | |
| parent | 535e8db0dafd8fde898be08e889aee63536ddefe (diff) | |
| download | bcm5719-llvm-82baa9c39411ee5bf1a035742cc2ff69bc40641b.tar.gz bcm5719-llvm-82baa9c39411ee5bf1a035742cc2ff69bc40641b.zip | |
Convert to the new TargetMachine interface.
llvm-svn: 13952
Diffstat (limited to 'llvm/lib/Target/X86/FloatingPoint.cpp')
| -rw-r--r-- | llvm/lib/Target/X86/FloatingPoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/FloatingPoint.cpp b/llvm/lib/Target/X86/FloatingPoint.cpp index b6a9ebfdd75..329cdd8e751 100644 --- a/llvm/lib/Target/X86/FloatingPoint.cpp +++ b/llvm/lib/Target/X86/FloatingPoint.cpp @@ -177,7 +177,7 @@ bool FPS::runOnMachineFunction(MachineFunction &MF) { /// transforming FP instructions into their stack form. /// bool FPS::processBasicBlock(MachineFunction &MF, MachineBasicBlock &BB) { - const TargetInstrInfo &TII = MF.getTarget().getInstrInfo(); + const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo(); bool Changed = false; MBB = &BB; |

