Commit feb4e5ba by Richard Henderson Committed by Richard Henderson

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
parent 1c061be5
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.
......
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment