supress warning in gcc -Wall
[libfirm] / ir / lower / lower_intrinsics.c
index 09af1f4..69bfc6f 100644 (file)
@@ -27,6 +27,8 @@
 #include "irgwalk.h"
 #include "ircons.h"
 #include "irgmod.h"
+#include "irgopt.h"
+#include "trouts.h"
 #include "lower_intrinsics.h"
 #include "pmap.h"
 
@@ -34,7 +36,7 @@
 typedef struct _walker_env {
   pmap     *c_map;              /**< The intrinsic call map. */
   unsigned nr_of_intrinsics;    /**< statistics */
-  const i_instr_record **i_map; /**< The intrinsic instruction map. */
+  i_instr_record **i_map;       /**< The intrinsic instruction map. */
 } walker_env_t;
 
 /**
@@ -80,12 +82,12 @@ static void call_mapper(ir_node *node, void *env) {
 
 /* Go through all graphs and map calls to intrinsic functions. */
 unsigned lower_intrinsics(i_record *list, int length) {
-  int                  i, n_ops = get_irp_n_opcodes();
-  ir_graph             *irg;
-  pmap                 *c_map = pmap_create_ex(length);
-  const i_instr_record **i_map;
-  unsigned             nr_of_intrinsics = 0;
-  walker_env_t         wenv;
+  int            i, n_ops = get_irp_n_opcodes();
+  ir_graph       *irg;
+  pmap           *c_map = pmap_create_ex(length);
+  i_instr_record **i_map;
+  unsigned       nr_of_intrinsics = 0;
+  walker_env_t   wenv;
 
   /* we use the ir_op generic pointers here */
   NEW_ARR_A(const i_instr_record *, i_map, n_ops);
@@ -121,8 +123,12 @@ unsigned lower_intrinsics(i_record *list, int length) {
 
       /* exception control flow might have changed */
       set_irg_doms_inconsistent(irg);
+      set_irg_extblk_inconsistent(irg);
       set_irg_loopinfo_inconsistent(irg);
 
+      /* calls might be removed/added */
+      set_trouts_inconsistent();
+
       /* optimize it, tuple might be created */
       local_optimize_graph(irg);