removed INLIEN before global functions
[libfirm] / ir / ir / ircons_t.h
index 0650fd9..bfd6021 100644 (file)
 #include "ircons.h"
 # include "irgraph_t.h"
 
+/**
+ * Initializes the graph construction.
+ *
+ * @param func  @see default_initialize_local_variable_func_t
+ */
+void init_cons (default_initialize_local_variable_func_t *func);
+
 /* inline functions */
 
 static INLINE ir_node *
@@ -23,6 +30,13 @@ __new_d_Bad(void) {
   return current_ir_graph->bad;
 }
 
+static INLINE ir_node *
+__new_d_NoMem(void) {
+  return current_ir_graph->no_mem;
+}
+
+
 #define new_d_Bad()               __new_d_Bad()
+#define new_d_NoMem()             __new_d_NoMem()
 
 #endif /* _IRCONS_T_H_ */