identifiers starting with _ are reserved; remove this bad practice
[libfirm] / include / libfirm / irconsconfirm.h
index 2ebd494..167c733 100644 (file)
@@ -50,7 +50,7 @@
  * nodes too. The current solution is to remove Confirms at a later
  * pass.
  */
-FIRM_DLL void construct_confirms(ir_graph *irg);
+FIRM_API void construct_confirms(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for construct_confirms().
@@ -59,7 +59,7 @@ FIRM_DLL void construct_confirms(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-FIRM_DLL 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.
@@ -67,7 +67,7 @@ FIRM_DLL 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)).
  */
-FIRM_DLL void remove_confirms(ir_graph *irg);
+FIRM_API void remove_confirms(ir_graph *irg);
 
 /**
  * Creates an ir_graph pass for remove_confirms().
@@ -76,7 +76,7 @@ FIRM_DLL void remove_confirms(ir_graph *irg);
  *
  * @return  the newly created ir_graph pass
  */
-FIRM_DLL 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"