X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=include%2Flibfirm%2Firconsconfirm.h;h=d335365bca037cf70789a7bb7bc8720507073a48;hb=abe1a1208ecb24b75b001bfe98ea0c500407a094;hp=4e83817357bd9756d1d6e67501baf32f4a46124a;hpb=4b363c6a4e0584ce755b5f82fc3d7a9dc38658b2;p=libfirm diff --git a/include/libfirm/irconsconfirm.h b/include/libfirm/irconsconfirm.h index 4e8381735..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,7 +49,7 @@ * 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(). @@ -58,7 +58,7 @@ void construct_confirms(ir_graph *irg); * * @return the newly created ir_graph pass */ -ir_graph_pass_t *construct_confirms_pass(const char *name); +FIRM_API ir_graph_pass_t *construct_confirms_pass(const char *name); /** * Remove all Confirm nodes from a graph. @@ -66,7 +66,7 @@ ir_graph_pass_t *construct_confirms_pass(const char *name); * 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(). @@ -75,6 +75,8 @@ void remove_confirms(ir_graph *irg); * * @return the newly created ir_graph pass */ -ir_graph_pass_t *remove_confirms_pass(const char *name); +FIRM_API ir_graph_pass_t *remove_confirms_pass(const char *name); + +#include "end.h" #endif