do not free the graph after emitting it (this should only change the peak memory...
[libfirm] / ir / be / bespillutil.c
index ce6ba2f..2216119 100644 (file)
@@ -52,7 +52,7 @@
 #include "bespill.h"
 #include "bespillutil.h"
 #include "belive_t.h"
-#include "benode_t.h"
+#include "benode.h"
 #include "bechordal_t.h"
 #include "bestatevent.h"
 #include "bessaconstr.h"
@@ -879,7 +879,7 @@ void be_insert_spills_reloads(spill_env_t *env)
        ir_nodeset_iterator_t  iter;
        ir_node               *node;
 
-       BE_TIMER_PUSH(t_ra_spill_apply);
+       be_timer_push(T_RA_SPILL_APPLY);
 
        /* create all phi-ms first, this is needed so, that phis, hanging on
           spilled phis work correctly */
@@ -1050,7 +1050,7 @@ void be_insert_spills_reloads(spill_env_t *env)
 
        be_remove_dead_nodes_from_schedule(env->birg);
 
-       BE_TIMER_POP(t_ra_spill_apply);
+       be_timer_pop(T_RA_SPILL_APPLY);
 }
 
 void be_init_spill(void)