remove the unused 'ident' type, remove tpo_max add tpo_last
[libfirm] / include / libfirm / irconsconfirm.h
index cd7950a..4e83817 100644 (file)
@@ -55,12 +55,10 @@ 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);
+ir_graph_pass_t *construct_confirms_pass(const char *name);
 
 /**
  * Remove all Confirm nodes from a graph.
@@ -74,11 +72,9 @@ 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);
+ir_graph_pass_t *remove_confirms_pass(const char *name);
 
 #endif