From: Jose Fonseca Date: Thu, 28 Apr 2016 11:19:13 +0000 (+0100) Subject: nir: Remove spurious ; after nir_builder functions. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e7438009afe5d0372fa1c89c2d3407234662521b;p=mesa.git nir: Remove spurious ; after nir_builder functions. Makes -pedantic happy. Reviewed-by: Connor Abbott --- diff --git a/src/compiler/nir/nir_builder_opcodes_h.py b/src/compiler/nir/nir_builder_opcodes_h.py index e27206ea8fc..038e2b4e1ef 100644 --- a/src/compiler/nir/nir_builder_opcodes_h.py +++ b/src/compiler/nir/nir_builder_opcodes_h.py @@ -27,7 +27,7 @@ template = """\ #define _NIR_BUILDER_OPCODES_ % for name, opcode in sorted(opcodes.iteritems()): -ALU${opcode.num_inputs}(${name}); +ALU${opcode.num_inputs}(${name}) % endfor #endif /* _NIR_BUILDER_OPCODES_ */"""