aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2009-09-10 11:28:24 -0700
committerRichard Henderson <rth@gcc.gnu.org>2009-09-10 11:28:24 -0700
commitfeb4e5ba87ce9a1774925b939959ec6d7f20f813 (patch)
tree04972914f26f7d13236de87fbabe3db0bcd151f1 /gcc
parent1c061be54199048f795df9cc1c18583609bd4121 (diff)
downloadgcc-feb4e5ba87ce9a1774925b939959ec6d7f20f813.zip
gcc-feb4e5ba87ce9a1774925b939959ec6d7f20f813.tar.gz
gcc-feb4e5ba87ce9a1774925b939959ec6d7f20f813.tar.bz2
tree-cfg.c (dump_function_to_file): Dump eh tree with TDF_EH, not TDF_DETAILS.
* tree-cfg.c (dump_function_to_file): Dump eh tree with TDF_EH, not TDF_DETAILS. From-SVN: r151608
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/tree-cfg.c2
2 files changed, 4 insertions, 1 deletions
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 <rth@redhat.com>
+ * 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))