renamed __get_op_pinned() to _get_op_pinned()
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 1 Jun 2005 12:12:41 +0000 (12:12 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 1 Jun 2005 12:12:41 +0000 (12:12 +0000)
[r5938]

ir/ir/irnode_t.h

index cad918e..f5050e9 100644 (file)
@@ -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;