From e12b3efa7f14b20cf95746dcfa39b9f557c347c3 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Sat, 3 May 2008 18:16:43 +0000 Subject: [PATCH] - fixed r19477: pin_state MUST be the first attribute [r19499] --- ir/ir/irtypes.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ir/ir/irtypes.h b/ir/ir/irtypes.h index e69ae2114..9baed2a6f 100644 --- a/ir/ir/irtypes.h +++ b/ir/ir/irtypes.h @@ -285,11 +285,12 @@ typedef struct { /** Inline Assembler support attribute. */ typedef struct { + /* BEWARE: pin state MUST be the first attribute */ + op_pin_state pin_state; /**< the pin state for operations that might generate a exception */ ident *asm_text; /**< The inline assembler text. */ ir_asm_constraint *inputs; /**< Input constraints. */ ir_asm_constraint *outputs; /**< Output constraints. */ ident **clobber; /**< List of clobbered registers. */ - op_pin_state pin_state; /**< the pin state for operations that might generate a exception */ } asm_attr; /** Some IR-nodes just have one attribute, these are stored here, -- 2.20.1