diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-22 19:44:46 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-22 19:44:46 +0000 |
commit | d60ec13d843da3d28b399506b230a144847cd44f (patch) | |
tree | b4c333291033fc15288ea4403ffdc6306efe3cbc /gcc/tree-dump.c | |
parent | d01634019b35e129453f15c3e7b1eacd0296455a (diff) | |
download | gcc-d60ec13d843da3d28b399506b230a144847cd44f.tar.gz |
* tree-pass.h (TDF_EH): Define.
* gimple-pretty-print.c (dump_gimple_stmt): If FLAGS
contains TDF_EH, print the EH region number holding GS.
* tree-dump.c (dump_options): Add "eh".
* doc/invoke.texi: Document it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149958 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-dump.c')
-rw-r--r-- | gcc/tree-dump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c index 1cb650442b7..61ccc6ce792 100644 --- a/gcc/tree-dump.c +++ b/gcc/tree-dump.c @@ -816,6 +816,7 @@ static const struct dump_option_value_info dump_options[] = {"stmtaddr", TDF_STMTADDR}, {"memsyms", TDF_MEMSYMS}, {"verbose", TDF_VERBOSE}, + {"eh", TDF_EH}, {"all", ~(TDF_RAW | TDF_SLIM | TDF_LINENO | TDF_TREE | TDF_RTL | TDF_IPA | TDF_STMTADDR | TDF_GRAPH | TDF_DIAGNOSTIC | TDF_VERBOSE | TDF_RHS_ONLY)}, |