- fixed r19477: pin_state MUST be the first attribute
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Sat, 3 May 2008 18:16:43 +0000 (18:16 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Sat, 3 May 2008 18:16:43 +0000 (18:16 +0000)
[r19499]

ir/ir/irtypes.h

index e69ae21..9baed2a 100644 (file)
@@ -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,