X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Firconsconfirm.h;h=d335365bca037cf70789a7bb7bc8720507073a48;hb=b4b6a3c36c9226b69d08a0d78415031d63d0f204;hp=cd7950a05f3940244df6757e3051ea2d6004dc7f;hpb=d92c40358495a9da07dcb03c9ad418bf460825b0;p=libfirm diff --git a/include/libfirm/irconsconfirm.h b/include/libfirm/irconsconfirm.h index cd7950a05..d335365bc 100644 --- a/include/libfirm/irconsconfirm.h +++ b/include/libfirm/irconsconfirm.h @@ -22,12 +22,12 @@ * @brief Construction of Confirm nodes * @author Michael Beck * @date 6.2005 - * @version $Id$ */ #ifndef FIRM_ANA_IRCONSCONFIRM_H #define FIRM_ANA_IRCONSCONFIRM_H #include "firm_types.h" +#include "begin.h" /** * Inject Confirm nodes into a graph. @@ -49,18 +49,16 @@ * nodes too. The current solution is to remove Confirms at a later * pass. */ -void construct_confirms(ir_graph *irg); +FIRM_API void construct_confirms(ir_graph *irg); /** * Creates an ir_graph pass for construct_confirms(). * * @param name the name of this pass or NULL - * @param verify should this pass be verified? - * @param dump should this pass result be dumped? * * @return the newly created ir_graph pass */ -ir_graph_pass_t *construct_confirms_pass(const char *name, int verify, int dump); +FIRM_API ir_graph_pass_t *construct_confirms_pass(const char *name); /** * Remove all Confirm nodes from a graph. @@ -68,17 +66,17 @@ ir_graph_pass_t *construct_confirms_pass(const char *name, int verify, int dump) * Note that local_optimize() can handle this if * the remove Confirm node setting is on (set_opt_remove_Confirm(1)). */ -void remove_confirms(ir_graph *irg); +FIRM_API void remove_confirms(ir_graph *irg); /** * Creates an ir_graph pass for remove_confirms(). * * @param name the name of this pass or NULL - * @param verify should this pass be verified? - * @param dump should this pass result be dumped? * * @return the newly created ir_graph pass */ -ir_graph_pass_t *remove_confirms_pass(const char *name, int verify, int dump); +FIRM_API ir_graph_pass_t *remove_confirms_pass(const char *name); + +#include "end.h" #endif