diff options
author | Eric Anholt <[email protected]> | 2014-11-12 13:27:49 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-11-24 14:56:22 -0800 |
commit | de2f8d75db3dad3089c96b65223e47ad3986a25c (patch) | |
tree | 00e4a438e8d2aa957f2ade7baa4200597eb5714f /src/gallium/drivers/r600/r600_shader.c | |
parent | d4864cdf15ccd30f0e82d07fd0e9db8a0c115cda (diff) |
gallium: Drop the unused RCC opcode.
Nothing in the tree generated it.
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_shader.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_shader.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index 10a5ca0b1ae..ac7095f4de4 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -7222,7 +7222,7 @@ static struct r600_shader_tgsi_instruction r600_shader_tgsi_instruction[] = { {TGSI_OPCODE_XPD, 0, ALU_OP0_NOP, tgsi_xpd}, {32, 0, ALU_OP0_NOP, tgsi_unsupported}, {TGSI_OPCODE_ABS, 0, ALU_OP1_MOV, tgsi_op2}, - {TGSI_OPCODE_RCC, 0, ALU_OP0_NOP, tgsi_unsupported}, + {34, 0, ALU_OP0_NOP, tgsi_unsupported}, {TGSI_OPCODE_DPH, 0, ALU_OP2_DOT4, tgsi_dp}, {TGSI_OPCODE_COS, 0, ALU_OP1_COS, tgsi_trig}, {TGSI_OPCODE_DDX, 0, FETCH_OP_GET_GRADIENTS_H, tgsi_tex}, @@ -7421,7 +7421,7 @@ static struct r600_shader_tgsi_instruction eg_shader_tgsi_instruction[] = { {TGSI_OPCODE_XPD, 0, ALU_OP0_NOP, tgsi_xpd}, {32, 0, ALU_OP0_NOP, tgsi_unsupported}, {TGSI_OPCODE_ABS, 0, ALU_OP1_MOV, tgsi_op2}, - {TGSI_OPCODE_RCC, 0, ALU_OP0_NOP, tgsi_unsupported}, + {34, 0, ALU_OP0_NOP, tgsi_unsupported}, {TGSI_OPCODE_DPH, 0, ALU_OP2_DOT4, tgsi_dp}, {TGSI_OPCODE_COS, 0, ALU_OP1_COS, tgsi_trig}, {TGSI_OPCODE_DDX, 0, FETCH_OP_GET_GRADIENTS_H, tgsi_tex}, @@ -7620,7 +7620,7 @@ static struct r600_shader_tgsi_instruction cm_shader_tgsi_instruction[] = { {TGSI_OPCODE_XPD, 0, ALU_OP0_NOP, tgsi_xpd}, {32, 0, ALU_OP0_NOP, tgsi_unsupported}, {TGSI_OPCODE_ABS, 0, ALU_OP1_MOV, tgsi_op2}, - {TGSI_OPCODE_RCC, 0, ALU_OP0_NOP, tgsi_unsupported}, + {34, 0, ALU_OP0_NOP, tgsi_unsupported}, {TGSI_OPCODE_DPH, 0, ALU_OP2_DOT4, tgsi_dp}, {TGSI_OPCODE_COS, 0, ALU_OP1_COS, cayman_trig}, {TGSI_OPCODE_DDX, 0, FETCH_OP_GET_GRADIENTS_H, tgsi_tex}, |