Rduced the number of files copied for INSTALL
[libfirm] / ir / ir / ircons.c
index 5b8e16f..18f1b53 100644 (file)
@@ -9,6 +9,10 @@
 **   by Goetz Lindenmaier
 */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 # include "irgraph_t.h"
 # include "irnode_t.h"
 # include "irmode_t.h"
@@ -606,7 +610,6 @@ new_End (void)
   return res;
 }
 
-#if 1
 /* Constructs a Block with a fixed number of predecessors.
    Does set current_block.  Can be used with automatic Phi
    node construction. */
@@ -628,13 +631,6 @@ new_Block (int arity, ir_node **in)
 
   return res;
 }
-#else
-ir_node *
-new_Block (void)
-{
-  return new_immBlock();
-}
-#endif
 
 /*************************************************************************/
 /* Methods necessary for automatic Phi node creation                     */