From 46412a373a530ead8448abe35705577d223ff1a5 Mon Sep 17 00:00:00 2001 From: dnovillo Date: Fri, 16 May 2008 13:34:34 +0000 Subject: 2008-05-16 Kenneth Zadeck * doc/invoke.text (-fdump-tree-*-verbose): New option. * tree-dump.c (dump_options): New verbose option. * tree-pretty-print.c (dump_phi_nodes, dump_generic_bb_buff): Add verbose dump. * tree-pass.h (TDF_VERBOSE): New dump flag. * print-tree.c (print_node): Added code to be able to print PHI_NODES. (tree-flow.h): Added include. Makefile.in (print-tree.o): Added TREE_FLOW_H. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135417 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree-dump.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/tree-dump.c') diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c index 29bcbb416f2..8e911ab93ea 100644 --- a/gcc/tree-dump.c +++ b/gcc/tree-dump.c @@ -822,8 +822,9 @@ static const struct dump_option_value_info dump_options[] = {"uid", TDF_UID}, {"stmtaddr", TDF_STMTADDR}, {"memsyms", TDF_MEMSYMS}, + {"verbose", TDF_VERBOSE}, {"all", ~(TDF_RAW | TDF_SLIM | TDF_LINENO | TDF_TREE | TDF_RTL | TDF_IPA - | TDF_STMTADDR | TDF_GRAPH | TDF_DIAGNOSTIC)}, + | TDF_STMTADDR | TDF_GRAPH | TDF_DIAGNOSTIC | TDF_VERBOSE)}, {NULL, 0} }; -- cgit v1.2.1