summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir/nir_lower_idiv.c
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2015-08-06 07:16:07 -0700
committerKenneth Graunke <[email protected]>2015-08-27 13:36:57 -0700
commit0a913a9d85f2eb772be6a133965c5b8a4aa3c800 (patch)
tree228a06adfde6aa9f62808318e0d273a216a29b3c /src/glsl/nir/nir_lower_idiv.c
parent3e3cb77901c9c9efbf4cf550da80509fe6dbbd9f (diff)
nir: Convert the builder to use the new NIR cursor API.
The NIR cursor API is exactly what we want for the builder's insertion point. This simplifies the API, the implementation, and is actually more flexible as well. This required a bit of reworking of TGSI->NIR's if/loop stack handling; we now store cursors instead of cf_node_lists, for better or worse. v2: Actually move the cursor in the after_instr case. v3: Take advantage of nir_instr_insert (suggested by Connor). v4: vc4 build fixes (thanks to Eric). Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Eric Anholt <[email protected]> [v1] Reviewed-by: Jason Ekstrand <[email protected]> [v4] Acked-by: Connor Abbott <[email protected]> [v4]
Diffstat (limited to 'src/glsl/nir/nir_lower_idiv.c')
-rw-r--r--src/glsl/nir/nir_lower_idiv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/nir/nir_lower_idiv.c b/src/glsl/nir/nir_lower_idiv.c
index 7b680320783..0e1653dd274 100644
--- a/src/glsl/nir/nir_lower_idiv.c
+++ b/src/glsl/nir/nir_lower_idiv.c
@@ -50,7 +50,7 @@ convert_instr(nir_builder *bld, nir_alu_instr *alu)
is_signed = (op == nir_op_idiv);
- nir_builder_insert_before_instr(bld, &alu->instr);
+ bld->cursor = nir_before_instr(&alu->instr);
numer = nir_ssa_for_src(bld, alu->src[0].src,
nir_ssa_alu_instr_src_components(alu, 0));