X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firverify_t.h;h=bbf3787a3b0808c9f3720990b18bf2efd7e20ae5;hb=357886575cb0becb5bd9be376fde49b57edd5385;hp=8498a28516fd981ff75591d68eb707e3d9bf1e97;hpb=1a3b7d363474ab544c13093a2f0b578718d37c7a;p=libfirm diff --git a/ir/ir/irverify_t.h b/ir/ir/irverify_t.h index 8498a2851..bbf3787a3 100644 --- a/ir/ir/irverify_t.h +++ b/ir/ir/irverify_t.h @@ -51,7 +51,7 @@ extern const char *firm_verify_failure_msg; do { \ if (opt_do_node_verification == FIRM_VERIFICATION_ON) {\ if (!(expr) && current_ir_graph != get_const_code_irg()) \ - dump_ir_graph(current_ir_graph, "-assert"); \ + dump_ir_graph(current_ir_graph, "assert"); \ assert((expr) && string); } \ if (!(expr)) { \ if (opt_do_node_verification == FIRM_VERIFICATION_REPORT) \ @@ -70,7 +70,7 @@ do { \ fprintf(stderr, #expr " : " string "\n"); \ else if (opt_do_node_verification == FIRM_VERIFICATION_ON) { \ if (!(expr) && current_ir_graph != get_const_code_irg()) \ - dump_ir_graph(current_ir_graph, "-assert"); \ + dump_ir_graph(current_ir_graph, "assert"); \ assert((expr) && string); \ } \ return (ret); \ @@ -82,6 +82,6 @@ do { \ /** * Set the default verify_node and verify_proj_node operation for an ir_op_ops. */ -void firm_set_default_verifyer(unsigned code, ir_op_ops *ops); +void firm_set_default_verifier(unsigned code, ir_op_ops *ops); #endif