X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firopt_dbg.h;h=9f64a7c5129eecdeca4b5525935134d4cb9682cd;hb=e570f00fb465d212dde403160e97ab45d36d1d7e;hp=91638bcc2860040f3db15534cd2ec5af22f26d9b;hpb=c2b4a9f3d77fda7989e9cbd6293b9f9f58f4221c;p=libfirm diff --git a/ir/ir/iropt_dbg.h b/ir/ir/iropt_dbg.h index 91638bcc2..9f64a7c51 100644 --- a/ir/ir/iropt_dbg.h +++ b/ir/ir/iropt_dbg.h @@ -16,6 +16,9 @@ #define SIZ(x) sizeof(x)/sizeof((x)[0]) +/** + * Merge the debug info due to a straightening optimization + */ #define DBG_OPT_STG \ do { \ ir_node *ons[2]; \ @@ -24,6 +27,9 @@ __dbg_info_merge_sets(&n, 1, ons, SIZ(ons), dbg_straightening); \ } while(0) +/** + * Merge the debug info due to an if simplification + */ #define DBG_OPT_IFSIM \ do { \ ir_node *ons[4]; \ @@ -34,6 +40,9 @@ __dbg_info_merge_sets(&n, 1, ons, SIZ(ons), dbg_if_simplification); \ } while(0) +/** + * Merge the debug info due to an algebraic_simplification + */ #define DBG_OPT_ALGSIM1 \ do { \ ir_node *ons[3]; \ @@ -48,7 +57,7 @@ ir_node *ons[3]; \ ons[0] = oldn; \ ons[1] = get_unop_op(n); \ - ons[2] = n; \ + ons[2] = n; \ __dbg_info_merge_sets(&n, 1, ons, SIZ(ons), dbg_algebraic_simplification); \ } while(0)