diff options
author | Eric Christopher <echristo@gmail.com> | 2014-08-04 21:25:23 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-08-04 21:25:23 +0000 |
commit | 9f85dccfc64b5f0b0c63ddfa0a42d8615aa1fcb3 (patch) | |
tree | 2f1c6235bf63df237cd7241f860ec109e1a83e4d /lib/Target/SystemZ/SystemZElimCompare.cpp | |
parent | ffa13eafbf7f968774c3178f3efb85edeb9b105e (diff) | |
download | llvm-9f85dccfc64b5f0b0c63ddfa0a42d8615aa1fcb3.tar.gz |
Remove the TargetMachine forwards for TargetSubtargetInfo based
information and update all callers. No functional change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214781 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZElimCompare.cpp')
-rw-r--r-- | lib/Target/SystemZ/SystemZElimCompare.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZElimCompare.cpp b/lib/Target/SystemZ/SystemZElimCompare.cpp index dc210d608631..474eb9b56c35 100644 --- a/lib/Target/SystemZ/SystemZElimCompare.cpp +++ b/lib/Target/SystemZ/SystemZElimCompare.cpp @@ -458,7 +458,8 @@ bool SystemZElimCompare::processBlock(MachineBasicBlock &MBB) { } bool SystemZElimCompare::runOnMachineFunction(MachineFunction &F) { - TII = static_cast<const SystemZInstrInfo *>(F.getTarget().getInstrInfo()); + TII = static_cast<const SystemZInstrInfo *>( + F.getTarget().getSubtargetImpl()->getInstrInfo()); TRI = &TII->getRegisterInfo(); bool Changed = false; |