summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQiang Yu <yuq825@gmail.com>2017-10-13 18:46:08 +0800
committerQiang Yu <yuq825@gmail.com>2017-10-13 18:56:44 +0800
commit84e88b73679b6c6a31713070a68a64ae07130f5e (patch)
tree0c2d1186f821347dff573f176f2005cf4de70a0a
parent43d75ec232e260da24907ecd5847fe7c2f3b4ff0 (diff)
lima/gpir: move pass ahead of complex slot for move node
pass can be used by 2 instrs after while complex can only 1 Signed-off-by: Qiang Yu <yuq825@gmail.com>
-rw-r--r--src/gallium/drivers/lima/ir/gp/node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/lima/ir/gp/node.c b/src/gallium/drivers/lima/ir/gp/node.c
index 1bb72230e0..1a3784a6ed 100644
--- a/src/gallium/drivers/lima/ir/gp/node.c
+++ b/src/gallium/drivers/lima/ir/gp/node.c
@@ -36,7 +36,7 @@ const gpir_op_info gpir_op_infos[] = {
.slots = (int []) {
GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_MUL1,
GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_MUL0,
- GPIR_INSTR_SLOT_COMPLEX, GPIR_INSTR_SLOT_PASS,
+ GPIR_INSTR_SLOT_PASS, GPIR_INSTR_SLOT_COMPLEX,
GPIR_INSTR_SLOT_END
},
},