From: Eric Anholt Date: Sat, 29 Dec 2018 06:02:27 +0000 (-0800) Subject: v3d: Drop incorrect dependency for flpop. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=39b1112189402affc341f2a85105a9cb68077edd;p=mesa.git 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. --- 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; }