From: Michael Beck Date: Thu, 25 May 2006 23:11:58 +0000 (+0000) Subject: Fixed return type of get_op_attr_size() X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=606c19f527beef47e48c1c3c0108917614105cc0;p=libfirm Fixed return type of get_op_attr_size() [r7803] --- diff --git a/ir/ir/irop_t.h b/ir/ir/irop_t.h index aa67a72c8..0e6cbb050 100644 --- a/ir/ir/irop_t.h +++ b/ir/ir/irop_t.h @@ -56,7 +56,7 @@ void default_copy_attr(const ir_node *old_node, ir_node *new_node); * Returns the attribute size of nodes of this opcode. * @note Use not encouraged, internal feature. */ -static INLINE int get_op_attr_size (const ir_op *op) { +static INLINE size_t get_op_attr_size (const ir_op *op) { return op->attr_size; }