X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fopt%2Fopt_frame.c;h=c37621ea3c96dc2a44a0e292c91bd4633630661b;hb=6b124543aff56817fcfe6d5b5ff181ac5c790e73;hp=3ce92542931a6ca5d0503c35f34d7116be7ec234;hpb=8f530048146e640fdfeb16b8ebe8bc997a1c8abe;p=libfirm diff --git a/ir/opt/opt_frame.c b/ir/opt/opt_frame.c index 3ce925429..c37621ea3 100644 --- a/ir/opt/opt_frame.c +++ b/ir/opt/opt_frame.c @@ -23,7 +23,7 @@ * @date 15.03.2006 * @author Michael Beck * @version $Id$ - * @summary + * @brief * Optimize the frame type by removing unused type members. */ #include "config.h" @@ -33,7 +33,7 @@ #include "type_t.h" #include "irouts.h" #include "iredges.h" -#include "irtools.h" +#include "irpass.h" /* * Optimize the frame type of an irg by removing @@ -109,7 +109,7 @@ void opt_frame_irg(ir_graph *irg) { irp_free_resources(irp, IR_RESOURCE_ENTITY_LINK); } -ir_graph_pass_t *opt_frame_irg_pass(const char *name, int verify, int dump) +ir_graph_pass_t *opt_frame_irg_pass(const char *name) { - return def_graph_pass(name ? name : "opt_frame_irg", verify, dump, opt_frame_irg); + return def_graph_pass(name ? name : "opt_frame_irg", opt_frame_irg); }