X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Firopt_dbg.h;h=6bf99147355df1df1968b54cdbdf7172adb5d2e0;hb=3646e58f46f85a17537e89483d6b0c279df4a4d2;hp=df2fa6367e8b1a4b392852ce3c0c044c7b9b60ca;hpb=e690de805182c6c6f15d73b8649e59ffb7f84b6a;p=libfirm diff --git a/include/libfirm/iropt_dbg.h b/include/libfirm/iropt_dbg.h index df2fa6367..6bf991473 100644 --- a/include/libfirm/iropt_dbg.h +++ b/include/libfirm/iropt_dbg.h @@ -417,15 +417,15 @@ } while(0) /** - * Merge the debug info due to a cond eval result. + * Merge the debug info due to a jump threading result. * * @param oldn the old control flow node * @param n the new control flow node replacing oldn */ -#define DBG_OPT_COND_EVAL(oldn, n) \ +#define DBG_OPT_JUMPTHREADING(oldn, n) \ do { \ - hook_merge_nodes(&n, 1, &oldn, 1, FS_OPT_COND_EVAL); \ - __dbg_info_merge_pair(n, oldn, dbg_cond_eval); \ + hook_merge_nodes(&n, 1, &oldn, 1, FS_OPT_JUMPTHREADING); \ + __dbg_info_merge_pair(n, oldn, dbg_jumpthreading); \ } while(0) #endif