belive: Change all users of _value_strictly_dominates() to _value_strictly_dominates_...
[libfirm] / ir / opt / local.c
index e1f0ab2..3abb165 100644 (file)
  * @brief   Apply local opts until fixpoint
  * @author  Andreas Zwinkau
  */
+#include <config.h>
 #include "irgopt.h"
-#include "opt_manage.h"
-
-static optdesc_t opt_local = {
-       "localopts",
-       0, // TODO optimize_graph_df handles preconditions itself
-       optimize_graph_df,
-};
 
 void local_opts(ir_graph *irg)
 {
-       perform_irg_optimization(irg, &opt_local);
+       optimize_graph_df(irg);
 }