Module: Mesa Branch: master Commit: 5f7b8fa4811ae0acb49de5d0ef44ae1573eb5ccc URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5f7b8fa4811ae0acb49de5d0ef44ae1573eb5ccc
Author: Timothy Arceri <[email protected]> Date: Mon Jun 1 08:00:14 2015 +1000 nir: remove extra semicolon Reviewed-by: Thomas Helland <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Connor Abbott <[email protected]> --- src/glsl/nir/nir_lower_atomics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glsl/nir/nir_lower_atomics.c b/src/glsl/nir/nir_lower_atomics.c index f6f8902..0457de6 100644 --- a/src/glsl/nir/nir_lower_atomics.c +++ b/src/glsl/nir/nir_lower_atomics.c @@ -109,7 +109,7 @@ lower_instr(nir_intrinsic_instr *instr, nir_function_impl *impl) } new_instr->src[0].is_ssa = true; - new_instr->src[0].ssa = offset_def;; + new_instr->src[0].ssa = offset_def; if (instr->dest.is_ssa) { nir_ssa_dest_init(&new_instr->instr, &new_instr->dest, _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
