From: Eric Anholt Date: Tue, 11 Nov 2014 22:08:13 +0000 (-0800) Subject: nir: Fix a bit of broken indentation. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=68d476167c0d23e3f050ce3a882fc7b741c18d09;p=mesa.git nir: Fix a bit of broken indentation. Reviewed-by: Matt Turner Reviewed-by: Jason Ekstrand --- diff --git a/src/glsl/nir/nir.c b/src/glsl/nir/nir.c index 25cdac0e815..10e6ed36d0c 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);