X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Frta.h;h=741a1058c5f7dca77225160e203a808590d7088a;hb=60a41f4fb0ce5cd99941b35b2ecc586a1030e871;hp=28cfcfdb32ed27e21c28b8304f04d7008a95d6da;hpb=c021732d2f0c04113e6afd153a7a9be38e40ca6f;p=libfirm diff --git a/include/libfirm/rta.h b/include/libfirm/rta.h index 28cfcfdb3..741a1058c 100644 --- a/include/libfirm/rta.h +++ b/include/libfirm/rta.h @@ -52,26 +52,26 @@ * Initialise the RTA data structures and perform RTA. * Expects that all allocations are done by Alloc nodes. */ -FIRM_DLL void rta_init(void); +FIRM_API void rta_init(void); /** * Delete all graphs that have been found to be dead. */ -FIRM_DLL void rta_delete_dead_graphs (void); +FIRM_API void rta_delete_dead_graphs (void); /** Clean up our data structures. * Finishes the RTA. */ -FIRM_DLL void rta_cleanup(void); +FIRM_API void rta_cleanup(void); /** Returns non-zero if the given class is alive. */ -FIRM_DLL int rta_is_alive_class(ir_type *clazz); +FIRM_API int rta_is_alive_class(ir_type *clazz); /** Returns non-zero if the given graph is alive. */ -FIRM_DLL int rta_is_alive_graph(ir_graph *graph); +FIRM_API int rta_is_alive_graph(ir_graph *graph); /** report for all graphs and types whether they are alive */ -FIRM_DLL void rta_report(void); +FIRM_API void rta_report(void); #include "end.h"