get_mode_size_bits() returns the size in bits, not bytes.
[libfirm] / include / libfirm / irconsconfirm.h
index 155d41a..4e83817 100644 (file)
  */
 void construct_confirms(ir_graph *irg);
 
+/**
+ * Creates an ir_graph pass for construct_confirms().
+ *
+ * @param name     the name of this pass or NULL
+ *
+ * @return  the newly created ir_graph pass
+ */
+ir_graph_pass_t *construct_confirms_pass(const char *name);
+
 /**
  * Remove all Confirm nodes from a graph.
  *
@@ -59,4 +68,13 @@ void construct_confirms(ir_graph *irg);
  */
 void remove_confirms(ir_graph *irg);
 
+/**
+ * Creates an ir_graph pass for remove_confirms().
+ *
+ * @param name     the name of this pass or NULL
+ *
+ * @return  the newly created ir_graph pass
+ */
+ir_graph_pass_t *remove_confirms_pass(const char *name);
+
 #endif