From feb4e5ba87ce9a1774925b939959ec6d7f20f813 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Thu, 10 Sep 2009 11:28:24 -0700 Subject: 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 --- gcc/tree-cfg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree-cfg.c') 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)) -- cgit v1.1