From: Tom Stellard Date: Thu, 17 May 2012 18:31:36 +0000 (-0400) Subject: r600g: Handle MUL_IEEE in r600_bytecode_get_num_operands X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5187948bc2b16df70ee6696a8702a898b38a2d63;p=mesa.git r600g: Handle MUL_IEEE in r600_bytecode_get_num_operands --- diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 5a10bd90776..b73bbb3c0f8 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -54,6 +54,7 @@ static inline unsigned int r600_bytecode_get_num_operands(struct r600_bytecode * case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLGE: case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLNE: case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MUL: + case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MUL_IEEE: case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MULHI_INT: case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MULLO_INT: case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MULHI_UINT: @@ -133,6 +134,7 @@ static inline unsigned int r600_bytecode_get_num_operands(struct r600_bytecode * case EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLGE: case EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLNE: case EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MUL: + case EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MUL_IEEE: case EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MULHI_INT: case EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MULLO_INT: case EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MULHI_UINT: