projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7c9fd7
)
v3d: Drop incorrect dependency for flpop.
author
Eric Anholt
<eric@anholt.net>
Sat, 29 Dec 2018 06:02:27 +0000
(22:02 -0800)
committer
Eric Anholt
<eric@anholt.net>
Sun, 30 Dec 2018 16:03:51 +0000
(08:03 -0800)
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
patch
|
blob
|
history
diff --git
a/src/broadcom/compiler/qpu_schedule.c
b/src/broadcom/compiler/qpu_schedule.c
index 7662c8f6f0857be336dbbd8fd3578abf6af6ec11..95494a1412a6044c6684606f01df4292e0d3f01b 100644
(file)
--- 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;
}