diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-06-02 05:57:12 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-06-02 05:57:12 +0000 |
| commit | 2150542af9c47a6c6614ec5900f7eb021211d8b5 (patch) | |
| tree | 3b30ef91418e526cf08e4ccd73bd98dffc29b926 /llvm/lib/CodeGen/VirtRegMap.cpp | |
| parent | 185fa54c689ab5bb8f97ee776def598ccfa74566 (diff) | |
| download | bcm5719-llvm-2150542af9c47a6c6614ec5900f7eb021211d8b5.tar.gz bcm5719-llvm-2150542af9c47a6c6614ec5900f7eb021211d8b5.zip | |
Adjust to new TargetMachine interface
llvm-svn: 13956
Diffstat (limited to 'llvm/lib/CodeGen/VirtRegMap.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/VirtRegMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/VirtRegMap.cpp b/llvm/lib/CodeGen/VirtRegMap.cpp index 5cec9e97c6e..8fc687dcc07 100644 --- a/llvm/lib/CodeGen/VirtRegMap.cpp +++ b/llvm/lib/CodeGen/VirtRegMap.cpp @@ -191,7 +191,7 @@ namespace { bool runOnMachineFunction(MachineFunction& mf, const VirtRegMap& vrm) { mf_ = &mf; tm_ = &mf_->getTarget(); - tii_ = &tm_->getInstrInfo(); + tii_ = tm_->getInstrInfo(); mri_ = tm_->getRegisterInfo(); vrm_ = &vrm; p2vMap_.assign(mri_->getNumRegs(), 0); |

