diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2016-04-27 18:29:11 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-04-27 18:29:11 +0000 |
commit | 03e1647d19647e6c45688f791e26d7a09b62577c (patch) | |
tree | 4530cf336103b2188b17081c375d39ff27cf2acd /llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp | |
parent | 622b95be7b0b49e6e428cff3bc7759bc544994aa (diff) | |
download | bcm5719-llvm-03e1647d19647e6c45688f791e26d7a09b62577c.tar.gz bcm5719-llvm-03e1647d19647e6c45688f791e26d7a09b62577c.zip |
Revert "[AMDGPU][llvm-mc] Add support of TTMP quads. Rework M0 exclusion for SMRD."
This reverts commit r267733 due to a -Werror,-Wunused-function error.
llvm-svn: 267752
Diffstat (limited to 'llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp b/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp index 03252db84b7..1ea8c77be69 100644 --- a/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp +++ b/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp @@ -240,12 +240,9 @@ void AMDGPUInstPrinter::printRegOperand(unsigned reg, raw_ostream &O, } else if (MRI.getRegClass(AMDGPU::VReg_128RegClassID).contains(reg)) { Type = "v"; NumRegs = 4; - } else if (MRI.getRegClass(AMDGPU::SGPR_128RegClassID).contains(reg)) { + } else if (MRI.getRegClass(AMDGPU::SReg_128RegClassID).contains(reg)) { Type = "s"; NumRegs = 4; - } else if (MRI.getRegClass(AMDGPU::TTMP_128RegClassID).contains(reg)) { - Type = "ttmp"; - NumRegs = 4; } else if (MRI.getRegClass(AMDGPU::VReg_96RegClassID).contains(reg)) { Type = "v"; NumRegs = 3; |