aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno/a2xx/ir2_nir.c
diff options
context:
space:
mode:
authorJonathan Marek <[email protected]>2019-01-23 17:43:28 -0500
committerRob Clark <[email protected]>2019-01-28 13:04:41 -0500
commit32b1d2d716ccc85c119e7a46008cdfd6450220e1 (patch)
tree1b64db31235de3993bdb12860575ed6ff34649d9 /src/gallium/drivers/freedreno/a2xx/ir2_nir.c
parent41a0acd6a149ec9f47ea527ad08a2b29bf1ee6b2 (diff)
freedreno: a2xx: ir2 cleanup
Reviewed-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/a2xx/ir2_nir.c')
-rw-r--r--src/gallium/drivers/freedreno/a2xx/ir2_nir.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/freedreno/a2xx/ir2_nir.c b/src/gallium/drivers/freedreno/a2xx/ir2_nir.c
index 8345e94c363..9b81fc4f558 100644
--- a/src/gallium/drivers/freedreno/a2xx/ir2_nir.c
+++ b/src/gallium/drivers/freedreno/a2xx/ir2_nir.c
@@ -292,7 +292,6 @@ instr_create_alu(struct ir2_context *ctx, nir_op opcode, unsigned ncomp)
[nir_op_fmov] = {MAXs, MAXv},
[nir_op_fsign] = {-1, CNDGTEv},
[nir_op_fnot] = {SETEs, SETEv},
- [nir_op_f2b32] = {SETNEs, SETNEv},
[nir_op_for] = {MAXs, MAXv},
[nir_op_fand] = {MINs, MINv},
[nir_op_fxor] = {-1, SETNEv},
@@ -446,7 +445,6 @@ emit_alu(struct ir2_context *ctx, nir_alu_instr * alu)
instr->src[1] = tmp;
break;
case nir_op_fcsel:
- case nir_op_bcsel:
tmp = instr->src[1];
instr->src[1] = instr->src[2];
instr->src[2] = tmp;