diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-10 18:28:24 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-10 18:28:24 +0000 |
commit | f89f17887246267b3c1bf9c137dd57a7419c496e (patch) | |
tree | 04972914f26f7d13236de87fbabe3db0bcd151f1 /gcc/tree-cfg.c | |
parent | 7055eea1d9c42c214a258c2c662dbd4887ae259e (diff) | |
download | gcc-f89f17887246267b3c1bf9c137dd57a7419c496e.tar.gz |
* tree-cfg.c (dump_function_to_file): Dump eh tree with TDF_EH,
not TDF_DETAILS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151608 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 565330591a4..02daee092ef 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -6442,7 +6442,7 @@ dump_function_to_file (tree fn, FILE *file, int flags) print_node (file, "", fn, 2); dsf = DECL_STRUCT_FUNCTION (fn); - if (dsf && (flags & TDF_DETAILS)) + if (dsf && (flags & TDF_EH)) dump_eh_tree (file, dsf); if (flags & TDF_RAW && !gimple_has_body_p (fn)) |