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/cfg-flags.def | |
parent | 066b83541dbfbf39b6f0521cd2e5338cbb4c3e78 (diff) | |
download | gcc-398b1daa2d620c9d317f84651c62a6286e476d32.tar.gz |
tm: Add uninstrumented code path
Co-Authored-By: Richard Henderson <rth@redhat.com>
From-SVN: r193271
Diffstat (limited to 'gcc/cfg-flags.def')
-rw-r--r-- | gcc/cfg-flags.def | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/cfg-flags.def b/gcc/cfg-flags.def index e9e2dd604e6..aea8f06bd66 100644 --- a/gcc/cfg-flags.def +++ b/gcc/cfg-flags.def @@ -171,6 +171,12 @@ DEF_EDGE_FLAG(CAN_FALLTHRU, 13) This flag is only used for the RTL CFG. */ DEF_EDGE_FLAG(LOOP_EXIT, 14) +/* Uninstrumented edge out of a GIMPLE_TRANSACTION statement. */ +DEF_EDGE_FLAG(TM_UNINSTRUMENTED, 15) + +/* Abort (over) edge out of a GIMPLE_TRANSACTION statement. */ +DEF_EDGE_FLAG(TM_ABORT, 16) + #endif /* |