remove unused/broken interprocedural view
[libfirm] / ir / ana / rta.c
index 0c935d0..c4cc9c0 100644 (file)
@@ -188,11 +188,6 @@ static int rta_fill_incremental(void)
        int  i;
        int  n_runs = 0;
        bool rerun  = true;
-#ifdef INTERPROCEDURAL_VIEW
-       int  old_ip_view = get_interprocedural_view();
-
-       set_interprocedural_view(0);     /* save this for later */
-#endif
 
        /* init_tables has added main_irg to _live_graphs */
 
@@ -235,10 +230,6 @@ static int rta_fill_incremental(void)
                ++n_runs;
        }
 
-#ifdef INTERPROCEDURAL_VIEW
-       set_interprocedural_view(old_ip_view); /* cover up our traces */
-#endif
-
        return n_runs;
 }