From 39b1112189402affc341f2a85105a9cb68077edd Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 28 Dec 2018 22:02:27 -0800 Subject: [PATCH] v3d: Drop incorrect dependency for flpop. It is just shifting probably-means-flags bits out of a value, it doesn't actually update the flags on its own. --- src/broadcom/compiler/qpu_schedule.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/broadcom/compiler/qpu_schedule.c b/src/broadcom/compiler/qpu_schedule.c index 7662c8f6f08..95494a1412a 100644 --- a/src/broadcom/compiler/qpu_schedule.c +++ b/src/broadcom/compiler/qpu_schedule.c @@ -359,10 +359,6 @@ calculate_deps(struct schedule_state *state, struct schedule_node *n) add_read_dep(state, state->last_sf, n); break; - case V3D_QPU_A_FLPOP: - add_write_dep(state, &state->last_sf, n); - break; - default: break; } -- 2.30.2