Implement binary emitter for fpush.
[libfirm] / ir / opt / ldst2.c
index 0c72988..d73a8f7 100644 (file)
@@ -41,7 +41,7 @@
 #include "irdump.h"
 #include "irflag_t.h"
 #include "irprintf.h"
-#include "irtools.h"
+#include "irpass.h"
 
 #if +0
 #define OPTIMISE_LOAD_AFTER_LOAD
@@ -847,7 +847,7 @@ void opt_sync(ir_graph *irg)
        //irg_walk_graph(irg, NormaliseSync, NULL, NULL);
 }
 
-ir_graph_pass_t *opt_sync_pass(const char *name, int verify, int dump)
+ir_graph_pass_t *opt_sync_pass(const char *name)
 {
-       return def_graph_pass(name ? name : "opt_sync", verify, dump, opt_sync);
+       return def_graph_pass(name ? name : "opt_sync", opt_sync);
 }