diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-11-28 02:35:17 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-11-28 02:35:17 +0000 |
commit | a9fa4fd9736f7d1066223f32fa54efbe86c0fceb (patch) | |
tree | 00f57213908b1acc2f03a46e9a70fd4778ba0af5 /lib/Target/PowerPC/PPCInstrInfo.cpp | |
parent | fa2d98632c77e5d9c305e97e5fa25d06f579127b (diff) | |
download | external_llvm-a9fa4fd9736f7d1066223f32fa54efbe86c0fceb.zip external_llvm-a9fa4fd9736f7d1066223f32fa54efbe86c0fceb.tar.gz external_llvm-a9fa4fd9736f7d1066223f32fa54efbe86c0fceb.tar.bz2 |
Remove all references to TargetInstrInfoImpl.
This class has been merged into its super-class TargetInstrInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168760 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCInstrInfo.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.cpp b/lib/Target/PowerPC/PPCInstrInfo.cpp index d9d6844..f76ff46 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.cpp +++ b/lib/Target/PowerPC/PPCInstrInfo.cpp @@ -60,7 +60,7 @@ ScheduleHazardRecognizer *PPCInstrInfo::CreateTargetHazardRecognizer( return new PPCScoreboardHazardRecognizer(II, DAG); } - return TargetInstrInfoImpl::CreateTargetHazardRecognizer(TM, DAG); + return TargetInstrInfo::CreateTargetHazardRecognizer(TM, DAG); } /// CreateTargetPostRAHazardRecognizer - Return the postRA hazard recognizer @@ -141,7 +141,7 @@ PPCInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const { // Normal instructions can be commuted the obvious way. if (MI->getOpcode() != PPC::RLWIMI) - return TargetInstrInfoImpl::commuteInstruction(MI, NewMI); + return TargetInstrInfo::commuteInstruction(MI, NewMI); // Cannot commute if it has a non-zero rotate count. if (MI->getOperand(3).getImm() != 0) |