From: Michael Beck Date: Wed, 1 Jun 2005 12:12:41 +0000 (+0000) Subject: renamed __get_op_pinned() to _get_op_pinned() X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=5f9192537e080476ed2e0a4cae5b0f0c984d6d92;p=libfirm renamed __get_op_pinned() to _get_op_pinned() [r5938] --- diff --git a/ir/ir/irnode_t.h b/ir/ir/irnode_t.h index cad918e8a..f5050e934 100644 --- a/ir/ir/irnode_t.h +++ b/ir/ir/irnode_t.h @@ -504,7 +504,7 @@ static INLINE op_pin_state _get_irn_pinned(const ir_node *node) { op_pin_state state; assert(node && _is_ir_node(node)); - state = __get_op_pinned(_get_irn_op(node)); + state = _get_op_pinned(_get_irn_op(node)); if (state >= op_pin_state_exc_pinned) return get_opt_fragile_ops() ? node->attr.except.pin_state : op_pin_state_pinned; return state;