Use symbolic names instead of magic values for the position parameter of get_irn_n().
[libfirm] / ir / be / TEMPLATE / TEMPLATE_nodes_attr.h
index bb47353..9421e34 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -32,13 +32,11 @@ typedef struct TEMPLATE_attr_t  TEMPLATE_attr_t;
 struct TEMPLATE_attr_t
 {
        arch_irn_flags_t flags;     /**< indicating if spillable, rematerializeable ... etc. */
-       int              n_res;     /**< number of results for this node */
 
        const arch_register_req_t **in_req;  /**< register requirements for arguments */
        const arch_register_req_t **out_req; /**< register requirements for results */
 
-       /* must be last, dynamically allocated */
-       const arch_register_t *slots[1];         /**< register slots for assigned registers */
+       const arch_register_t **slots;       /**< register slots for assigned registers */
 };
 
 #endif