Module: Mesa Branch: master Commit: 68d476167c0d23e3f050ce3a882fc7b741c18d09 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=68d476167c0d23e3f050ce3a882fc7b741c18d09
Author: Eric Anholt <[email protected]> Date: Tue Nov 11 14:08:13 2014 -0800 nir: Fix a bit of broken indentation. Reviewed-by: Matt Turner <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> --- src/glsl/nir/nir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glsl/nir/nir.c b/src/glsl/nir/nir.c index 25cdac0..10e6ed3 100644 --- a/src/glsl/nir/nir.c +++ b/src/glsl/nir/nir.c @@ -1295,7 +1295,7 @@ nir_instr_insert_before_cf(nir_cf_node *node, nir_instr *before) void nir_instr_insert_after_cf(nir_cf_node *node, nir_instr *after) { - if (node->type == nir_cf_node_block) { + if (node->type == nir_cf_node_block) { nir_instr_insert_after_block(nir_cf_node_as_block(node), after); } else { nir_cf_node *next = nir_cf_node_next(node); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
