From 606c19f527beef47e48c1c3c0108917614105cc0 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Thu, 25 May 2006 23:11:58 +0000 Subject: [PATCH] Fixed return type of get_op_attr_size() [r7803] --- ir/ir/irop_t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1