diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2012-11-06 23:55:39 +0000 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2012-11-06 15:55:39 -0800 |
commit | 398b1daa2d620c9d317f84651c62a6286e476d32 (patch) | |
tree | 16d986ed828729b0f4c133bd97a226cb4bd2be5a /gcc/tree-cfg.c | |
parent | 066b83541dbfbf39b6f0521cd2e5338cbb4c3e78 (diff) | |
download | gcc-398b1daa2d620c9d317f84651c62a6286e476d32.zip gcc-398b1daa2d620c9d317f84651c62a6286e476d32.tar.gz gcc-398b1daa2d620c9d317f84651c62a6286e476d32.tar.bz2 |
tm: Add uninstrumented code path
Co-Authored-By: Richard Henderson <rth@redhat.com>
From-SVN: r193271
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 183b9b9..5f74646 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -666,7 +666,7 @@ make_edges (void) { tree abort_label = gimple_transaction_label (last); if (abort_label) - make_edge (bb, label_to_block (abort_label), 0); + make_edge (bb, label_to_block (abort_label), EDGE_TM_ABORT); fallthru = true; } break; @@ -2062,7 +2062,7 @@ gimple_debug_bb_n (int n) /* Dump the CFG on stderr. FLAGS are the same used by the tree dumping functions - (see TDF_* in tree-pass.h). */ + (see TDF_* in dumpfile.h). */ void gimple_debug_cfg (int flags) @@ -6737,7 +6737,7 @@ move_sese_region_to_fn (struct function *dest_cfun, basic_block entry_bb, } -/* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in tree-pass.h) +/* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in dumpfile.h) */ void |