diff options
author | Rob Clark <[email protected]> | 2019-12-04 10:15:39 -0800 |
---|---|---|
committer | Rob Clark <[email protected]> | 2019-12-04 13:08:52 -0800 |
commit | 4e47c205b9749aebb258075da36d176e1d453eb4 (patch) | |
tree | 892ab31a8bb5d94aa26291f6ecfac3c76d203495 /src/freedreno/ir3 | |
parent | 50f60d69e45d5bac2aa44aeaddb6e2b5436f01d4 (diff) |
freedreno/ir3: remove store_output lowered to store_shared_ir3
Fixes crashes that were unnoticed in CI because debug_assert() was not
enabled (but become real crashes after the next patch):
dEQP-GLES31.functional.shaders.builtin_functions.integer.bitfieldextract.ivec2_highp_geometry
dEQP-GLES31.functional.shaders.builtin_functions.integer.bitfieldextract.ivec2_lowp_geometry
dEQP-GLES31.functional.shaders.builtin_functions.integer.bitfieldextract.ivec2_mediump_geometry
dEQP-GLES31.functional.shaders.builtin_functions.integer.bitfieldextract.uvec2_highp_geometry
dEQP-GLES31.functional.shaders.builtin_functions.integer.bitfieldextract.uvec2_lowp_geometry
dEQP-GLES31.functional.shaders.builtin_functions.integer.bitfieldextract.uvec2_mediump_geometry
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/freedreno/ir3')
-rw-r--r-- | src/freedreno/ir3/ir3_nir_lower_tess.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/freedreno/ir3/ir3_nir_lower_tess.c b/src/freedreno/ir3/ir3_nir_lower_tess.c index 27fc24c1a0d..5066f022729 100644 --- a/src/freedreno/ir3/ir3_nir_lower_tess.c +++ b/src/freedreno/ir3/ir3_nir_lower_tess.c @@ -191,7 +191,7 @@ lower_vs_block(nir_block *block, nir_builder *b, struct state *state) case nir_intrinsic_store_output: { // src[] = { value, offset }. - b->cursor = nir_before_instr(&intr->instr); + b->cursor = nir_instr_remove(&intr->instr); nir_ssa_def *vertex_id = build_vertex_id(b, state); nir_ssa_def *offset = build_local_offset(b, state, vertex_id, nir_intrinsic_base(intr), |