fpaStf is now Proj less
[libfirm] / ir / ir / ircons_t.h
index 212cffb..80353cb 100644 (file)
@@ -1,20 +1,34 @@
 /*
- * Project:     libFIRM
- * File name:   ir/ir/ircons_t.h
- * Purpose:     Various irnode constructors.  Automatic construction
- *              of SSA representation.
- * Author:      Martin Trapp, Christian Schaefer
- * Modified by: Michael Beck
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 1998-2003 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * 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     Various irnode constructors.  Automatic construction
+ *            of SSA representation. Private Header
+ * @author    Martin Trapp, Christian Schaefer, Michael Beck
+ * @version   $Id$
  */
-#ifndef _IRCONS_T_H_
-#define _IRCONS_T_H_
+#ifndef FIRM_IR_IRCONS_T_H
+#define FIRM_IR_IRCONS_T_H
 
 #include "ircons.h"
-# include "irgraph_t.h"
+#include "irgraph_t.h"
 
 /**
  * Initializes the graph construction.
@@ -30,16 +44,16 @@ void init_cons(uninitialized_local_variable_func_t *func);
 
 static INLINE ir_node *
 _new_d_Bad(void) {
-  return current_ir_graph->bad;
+  return current_ir_graph->anchors[anchor_bad];
 }
 
 static INLINE ir_node *
 _new_d_NoMem(void) {
-  return current_ir_graph->no_mem;
+  return current_ir_graph->anchors[anchor_no_mem];
 }
 
 
 #define new_d_Bad()               _new_d_Bad()
 #define new_d_NoMem()             _new_d_NoMem()
 
-#endif /* _IRCONS_T_H_ */
+#endif