[Mesa-dev] [PATCH 01/25] r600: remove redundant semicolon

Nicolai Hähnle nhaehnle at gmail.com
Thu Dec 6 14:00:22 UTC 2018


From: Nicolai Hähnle <nicolai.haehnle at amd.com>

---
 src/gallium/drivers/r600/sb/sb_ir.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/r600/sb/sb_ir.h b/src/gallium/drivers/r600/sb/sb_ir.h
index c7a94fcb930..ef0fbd4e68f 100644
--- a/src/gallium/drivers/r600/sb/sb_ir.h
+++ b/src/gallium/drivers/r600/sb/sb_ir.h
@@ -1005,21 +1005,21 @@ public:
 	virtual bool fold_dispatch(expr_handler *ex);
 
 	void jump(cf_node *c) { jump_target = c; jump_after_target = false; }
 	void jump_after(cf_node *c) { jump_target = c; jump_after_target = true; }
 
 	friend class shader;
 };
 
 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;
 
 	virtual bool is_valid() { return subtype == NST_ALU_INST; }
 	virtual bool accept(vpass &p, bool enter);
 	virtual bool fold_dispatch(expr_handler *ex);
 
 	unsigned forced_bank_swizzle() {
 		return ((bc.op_ptr->flags & AF_INTERP) && (bc.slot_flags == AF_4V)) ?
 				VEC_210 : 0;
-- 
2.19.1



More information about the mesa-dev mailing list