X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firverify_t.h;h=7a65332e10df33dd8e069d08f1c1f0f4c8146221;hb=35a7482553cc710c2e1de31091a921339398145c;hp=81e5a2f15a26d3fae787acd19ec8bf5f324e1650;hpb=0df5e0ea5d4d6a566339ac4b93a73719858e81e1;p=libfirm diff --git a/ir/ir/irverify_t.h b/ir/ir/irverify_t.h index 81e5a2f15..7a65332e1 100644 --- a/ir/ir/irverify_t.h +++ b/ir/ir/irverify_t.h @@ -21,7 +21,6 @@ * @file * @brief New checker of irnodes for correctness. * @author Michael Beck - * @version $Id$ */ #ifndef FIRM_IR_IRVERIFY_T_H #define FIRM_IR_IRVERIFY_T_H @@ -51,7 +50,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) \ @@ -65,12 +64,12 @@ do { \ do { \ if (!(expr)) { \ firm_verify_failure_msg = #expr " && " string; \ - if (opt_do_node_verification != FIRM_VERIFICATION_ERROR_ONLY) { blk; } \ + if (opt_do_node_verification != FIRM_VERIFICATION_ERROR_ONLY) { blk } \ if (opt_do_node_verification == FIRM_VERIFICATION_REPORT) \ 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); \