Add an ir_mode * parameter to all SymConst constructors (avoiding the "builtin" mode_...
[libfirm] / ir / be / ppc32 / ppc32_nodes_attr.h
index d2c7685..e9770c1 100644 (file)
@@ -1,5 +1,30 @@
-#ifndef _PPC32_NODES_ATTR_H_
-#define _PPC32_NODES_ATTR_H_
+/*
+ * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ *
+ * This file is part of libFirm.
+ *
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the
+ * packaging of this file.
+ *
+ * Licensees holding valid libFirm Professional Edition licenses may use
+ * this file in accordance with the libFirm Commercial License.
+ * Agreement provided with the Software.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE.
+ */
+
+/**
+ * @file
+ * @brief   declarations for ppc32 node attributes
+ * @author  Moritz Kroll, Jens Mueller
+ * @version $Id$
+ */
+#ifndef FIRM_BE_PPC32_PPC32_NODES_ATTR_H
+#define FIRM_BE_PPC32_PPC32_NODES_ATTR_H
 
 #include "../bearch_t.h"
 
@@ -27,7 +52,6 @@ typedef enum {
 
 typedef struct _ppc32_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 */
@@ -44,8 +68,7 @@ typedef struct _ppc32_attr_t {
                void* empty;
        } data;
 
-       /* 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 */
 } ppc32_attr_t;
 
-#endif /* _PPC32_NODES_ATTR_H_ */
+#endif