summaryrefslogtreecommitdiffstats
path: root/src/broadcom/compiler
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2018-07-20 12:43:37 -0700
committerEric Anholt <[email protected]>2018-07-23 10:21:43 -0700
commitcdfa99657dd56f80c2e966ac1af8a908d007baa2 (patch)
tree121282c5fb98f1c41ba97dbf826f29c7be5b8e55 /src/broadcom/compiler
parent91e24e57188ad6ec4495ff4c8ffceed284328601 (diff)
v3d: Fix the name of the "flpop" operation.
Noticed while trying to sort a new op into the appropriate place to match the documentation.
Diffstat (limited to 'src/broadcom/compiler')
-rw-r--r--src/broadcom/compiler/qpu_schedule.c2
-rw-r--r--src/broadcom/compiler/v3d_compiler.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/broadcom/compiler/qpu_schedule.c b/src/broadcom/compiler/qpu_schedule.c
index 5f3822e780b..2a035c5521e 100644
--- a/src/broadcom/compiler/qpu_schedule.c
+++ b/src/broadcom/compiler/qpu_schedule.c
@@ -343,7 +343,7 @@ calculate_deps(struct schedule_state *state, struct schedule_node *n)
add_read_dep(state, state->last_sf, n);
break;
- case V3D_QPU_A_FLBPOP:
+ case V3D_QPU_A_FLPOP:
add_write_dep(state, &state->last_sf, n);
break;
diff --git a/src/broadcom/compiler/v3d_compiler.h b/src/broadcom/compiler/v3d_compiler.h
index f3e3875c87c..133c2e0b7d9 100644
--- a/src/broadcom/compiler/v3d_compiler.h
+++ b/src/broadcom/compiler/v3d_compiler.h
@@ -905,7 +905,7 @@ VIR_A_ALU1(NOT)
VIR_A_ALU1(NEG)
VIR_A_ALU1(FLAPUSH)
VIR_A_ALU1(FLBPUSH)
-VIR_A_ALU1(FLBPOP)
+VIR_A_ALU1(FLPOP)
VIR_A_ALU1(SETMSF)
VIR_A_ALU1(SETREVF)
VIR_A_ALU0(TIDX)