From: Michael Beck Date: Sat, 3 May 2008 18:16:43 +0000 (+0000) Subject: - fixed r19477: pin_state MUST be the first attribute X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=e12b3efa7f14b20cf95746dcfa39b9f557c347c3;p=libfirm - fixed r19477: pin_state MUST be the first attribute [r19499] --- 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,