diff options
author | Eric Anholt <[email protected]> | 2018-12-28 22:02:27 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-12-30 08:03:51 -0800 |
commit | 39b1112189402affc341f2a85105a9cb68077edd (patch) | |
tree | afb9dd97919c67f7a636a3742e395d312fc38781 /src/broadcom | |
parent | a7c9fd757360dd6accfecbd3347a37b3203cf4f1 (diff) |
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.
Diffstat (limited to 'src/broadcom')
-rw-r--r-- | src/broadcom/compiler/qpu_schedule.c | 4 |
1 files changed, 0 insertions, 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; } |