From 5158d7eeb777a402440950ee9f3a5ce69586e791 Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Thu, 3 May 2001 11:02:26 +0000 Subject: dump.c (cp_dump_tree, [...]): New case. * dump.c (cp_dump_tree, USING_STMT case): New case. * tree.c (cp_statement_code_p): Add USING_STMT. * decl2.c (do_using_directive): Add the using directive statement. * tree.c (walk_tree): Reformat an if block. From-SVN: r41783 --- gcc/cp/dump.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gcc/cp/dump.c') diff --git a/gcc/cp/dump.c b/gcc/cp/dump.c index a4033c3..3f0a118 100644 --- a/gcc/cp/dump.c +++ b/gcc/cp/dump.c @@ -252,6 +252,12 @@ cp_dump_tree (di, t) dump_next_stmt (di, t); break; + case USING_STMT: + dump_stmt (di, t); + dump_child ("nmsp", USING_STMT_NAMESPACE (t)); + dump_next_stmt (di, t); + break; + default: break; } -- cgit v1.1