mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-26 05:56:51 +00:00
R600: Remove unused function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213472 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
eb957bfe32
commit
af1797fd03
@ -144,7 +144,6 @@ public:
|
||||
// Pure virtual funtions to be implemented by sub-classes.
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
||||
virtual unsigned getIEQOpcode() const = 0;
|
||||
virtual bool isMov(unsigned opcode) const = 0;
|
||||
|
||||
/// \brief Calculate the "Indirect Address" for the given \p RegIndex and
|
||||
|
@ -92,10 +92,6 @@ bool R600InstrInfo::isLegalToSplitMBBAt(MachineBasicBlock &MBB,
|
||||
return true;
|
||||
}
|
||||
|
||||
unsigned R600InstrInfo::getIEQOpcode() const {
|
||||
return AMDGPU::SETE_INT;
|
||||
}
|
||||
|
||||
bool R600InstrInfo::isMov(unsigned Opcode) const {
|
||||
|
||||
|
||||
@ -323,7 +319,7 @@ R600InstrInfo::getSrcs(MachineInstr *MI) const {
|
||||
Result.push_back(std::pair<MachineOperand *, int64_t>(&MO, Sel));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
return Result;
|
||||
}
|
||||
|
@ -152,7 +152,6 @@ namespace llvm {
|
||||
/// instruction slots within an instruction group.
|
||||
bool isVector(const MachineInstr &MI) const;
|
||||
|
||||
unsigned getIEQOpcode() const override;
|
||||
bool isMov(unsigned Opcode) const override;
|
||||
|
||||
DFAPacketizer *CreateTargetScheduleState(const TargetMachine *TM,
|
||||
|
@ -89,10 +89,6 @@ public:
|
||||
bool isTriviallyReMaterializable(const MachineInstr *MI,
|
||||
AliasAnalysis *AA = nullptr) const;
|
||||
|
||||
unsigned getIEQOpcode() const override {
|
||||
llvm_unreachable("Unimplemented");
|
||||
}
|
||||
|
||||
MachineInstr *buildMovInstr(MachineBasicBlock *MBB,
|
||||
MachineBasicBlock::iterator I,
|
||||
unsigned DstReg, unsigned SrcReg) const override;
|
||||
|
Loading…
Reference in New Issue
Block a user