diff options
Diffstat (limited to 'src/gallium/drivers/radeon/SIInstrInfo.cpp')
-rw-r--r-- | src/gallium/drivers/radeon/SIInstrInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/SIInstrInfo.cpp b/src/gallium/drivers/radeon/SIInstrInfo.cpp index 553ac363b78..d0b39d0ba01 100644 --- a/src/gallium/drivers/radeon/SIInstrInfo.cpp +++ b/src/gallium/drivers/radeon/SIInstrInfo.cpp @@ -108,7 +108,8 @@ unsigned SIInstrInfo::getISAOpcode(unsigned AMDILopcode) const switch (AMDILopcode) { //XXX We need a better way of detecting end of program case AMDIL::RETURN: return AMDIL::S_ENDPGM; - default: return AMDGPUInstrInfo::getISAOpcode(AMDILopcode); + case AMDIL::MOVE_f32: return AMDIL::V_MOV_B32_e32; + default: return AMDILopcode; } } |