diff options
author | Tom Stellard <[email protected]> | 2012-05-24 09:28:44 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-05-24 14:12:32 -0400 |
commit | d088da917bb3495491b9a5da5ca1716ddd91ddd5 (patch) | |
tree | 04e6db13a10f4eea63067429781fcb398cc0d915 /src/gallium/drivers/radeon/R600InstrInfo.cpp | |
parent | 662ccbfc21a650e0a52f6d293fa33f9e23e654c6 (diff) |
radeon/llvm: Remove auto-generated AMDIL->ISA conversion code
Diffstat (limited to 'src/gallium/drivers/radeon/R600InstrInfo.cpp')
-rw-r--r-- | src/gallium/drivers/radeon/R600InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/R600InstrInfo.cpp b/src/gallium/drivers/radeon/R600InstrInfo.cpp index 42a22576906..684c845e076 100644 --- a/src/gallium/drivers/radeon/R600InstrInfo.cpp +++ b/src/gallium/drivers/radeon/R600InstrInfo.cpp @@ -64,7 +64,7 @@ R600InstrInfo::copyPhysReg(MachineBasicBlock &MBB, unsigned R600InstrInfo::getISAOpcode(unsigned opcode) const { switch (opcode) { - default: return AMDGPUInstrInfo::getISAOpcode(opcode); + default: return opcode; case AMDIL::IEQ: return AMDIL::SETE_INT; case AMDIL::INE: |