diff options
author | Timothy Arceri <[email protected]> | 2015-06-01 08:00:14 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2015-06-03 06:50:33 +1000 |
commit | 5f7b8fa4811ae0acb49de5d0ef44ae1573eb5ccc (patch) | |
tree | 9de5a0e8020a4ef7dc941e7359b1f6aa74553bc4 /src | |
parent | 5da809d70fb50eb4b290ee7cbe1b8f09e9286f4e (diff) |
nir: remove extra semicolon
Reviewed-by: Thomas Helland <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/glsl/nir/nir_lower_atomics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/nir/nir_lower_atomics.c b/src/glsl/nir/nir_lower_atomics.c index f6f89020f78..0457de60d9a 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, |