diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-10-07 21:29:56 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-10-07 21:29:56 +0000 |
commit | 1f0227a4520f444f8f55a7d32607df3953f6be88 (patch) | |
tree | 459a19f3b4e811da4d46fda2f45cd515942c6d8f | |
parent | c46cfcbbc623ec9f1f1070f4cf55200fdc681980 (diff) | |
download | bcm5719-llvm-1f0227a4520f444f8f55a7d32607df3953f6be88.tar.gz bcm5719-llvm-1f0227a4520f444f8f55a7d32607df3953f6be88.zip |
R600: Remove dead code
llvm-svn: 219242
-rw-r--r-- | llvm/lib/Target/R600/AMDGPUInstrInfo.cpp | 17 | ||||
-rw-r--r-- | llvm/lib/Target/R600/AMDGPUInstrInfo.h | 2 |
2 files changed, 1 insertions, 18 deletions
diff --git a/llvm/lib/Target/R600/AMDGPUInstrInfo.cpp b/llvm/lib/Target/R600/AMDGPUInstrInfo.cpp index ef3bdb17e99..a8fc614d9b0 100644 --- a/llvm/lib/Target/R600/AMDGPUInstrInfo.cpp +++ b/llvm/lib/Target/R600/AMDGPUInstrInfo.cpp @@ -86,21 +86,6 @@ AMDGPUInstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI, // TODO: Implement this function return nullptr; } -bool AMDGPUInstrInfo::getNextBranchInstr(MachineBasicBlock::iterator &iter, - MachineBasicBlock &MBB) const { - while (iter != MBB.end()) { - switch (iter->getOpcode()) { - default: - break; - case AMDGPU::BRANCH_COND_i32: - case AMDGPU::BRANCH_COND_f32: - case AMDGPU::BRANCH: - return true; - }; - ++iter; - } - return false; -} void AMDGPUInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB, @@ -352,7 +337,7 @@ int AMDGPUInstrInfo::getMaskedMIMGOp(uint16_t Opcode, unsigned Channels) const { } // Wrapper for Tablegen'd function. enum Subtarget is not defined in any -// header files, so we need to wrap it in a function that takes unsigned +// header files, so we need to wrap it in a function that takes unsigned // instead. namespace llvm { namespace AMDGPU { diff --git a/llvm/lib/Target/R600/AMDGPUInstrInfo.h b/llvm/lib/Target/R600/AMDGPUInstrInfo.h index fa56977be84..da9833d25a5 100644 --- a/llvm/lib/Target/R600/AMDGPUInstrInfo.h +++ b/llvm/lib/Target/R600/AMDGPUInstrInfo.h @@ -40,8 +40,6 @@ class MachineInstrBuilder; class AMDGPUInstrInfo : public AMDGPUGenInstrInfo { private: const AMDGPURegisterInfo RI; - bool getNextBranchInstr(MachineBasicBlock::iterator &iter, - MachineBasicBlock &MBB) const; virtual void anchor(); protected: const AMDGPUSubtarget &ST; |