From b3026f4ad4adc12f1ac014d49ccf520848f88533 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Thu, 23 Jun 2005 14:36:50 +0000 Subject: [PATCH] Bugfix: missing ; [r6118] --- ir/ir/irnode_t.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ir/ir/irnode_t.h b/ir/ir/irnode_t.h index e9a931c79..900615493 100644 --- a/ir/ir/irnode_t.h +++ b/ir/ir/irnode_t.h @@ -516,9 +516,8 @@ _get_irn_pinned(const ir_node *node) { static INLINE op_pin_state _is_irn_pinned_in_irg(const ir_node *node) { - if (get_irg_pinned(get_irn_irg(node)) == op_pin_state_floats) { - return get_irn_pinned(node) - } + if (get_irg_pinned(get_irn_irg(node)) == op_pin_state_floats) + return get_irn_pinned(node); return op_pin_state_pinned; } -- 2.20.1