diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-23 19:44:19 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-23 19:44:19 +0000 |
commit | f59cbcbfb69f94a78281fcf474fc9242fec6ec82 (patch) | |
tree | 389d88dc095866e7b7f73e8f1553aa55bd3617a1 /gcc/cfg.c | |
parent | 397d79f2fb1078e95527e984fd6df47a4faae6e4 (diff) | |
download | gcc-f59cbcbfb69f94a78281fcf474fc9242fec6ec82.tar.gz |
bb-reorder: Split EH edges crossing partitions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@176696 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index 00d1d5cb7d8..ca04c94770e 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -720,7 +720,7 @@ dump_edge_info (FILE *file, edge e, int do_succ) static const char * const bitnames[] = { "fallthru", "ab", "abcall", "eh", "fake", "dfs_back", "can_fallthru", "irreducible", "sibcall", "loop_exit", - "true", "false", "exec" + "true", "false", "exec", "crossing", "preserve" }; int comma = 0; int i, flags = e->flags; |