From f89f17887246267b3c1bf9c137dd57a7419c496e Mon Sep 17 00:00:00 2001 From: rth Date: Thu, 10 Sep 2009 18:28:24 +0000 Subject: [PATCH] * 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 --- gcc/ChangeLog | 3 +++ gcc/tree-cfg.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 73f7c2e..fca47b9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2009-09-10 Richard Henderson + * tree-cfg.c (dump_function_to_file): Dump eh tree with TDF_EH, + not TDF_DETAILS. + * tree-cfg.c (gimple_redirect_edge_and_branch): Do gimple_try_redirect_by_replacing_jump test after no-op and EH tests. diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 5653305..02daee0 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)) -- 2.7.4