r600: remove redundant semicolon

Reviewed-By: Gert Wollny <gert.wollny@collabora.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
Nicolai Hähnle 2018-11-29 13:48:03 +01:00
parent 7230cb8f2b
commit 6f0322b16a

View file

@ -1012,7 +1012,7 @@ public:
class alu_node : public node {
protected:
alu_node() : node(NT_OP, NST_ALU_INST) { memset(&bc, 0, sizeof(bc_alu)); };
alu_node() : node(NT_OP, NST_ALU_INST) { memset(&bc, 0, sizeof(bc_alu)); }
public:
bc_alu bc;