summaryrefslogtreecommitdiff
path: root/gcc/cp/dump.c
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-29 20:07:56 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-29 20:07:56 +0000
commit6cdc2d6f2a39206a9721f6463a8604fe2f1b3dd2 (patch)
tree9c90f87361b4123e644f5500558396b8c60098a7 /gcc/cp/dump.c
parent74e1778a49a0d22576aed3d5683e2a2bc02328f3 (diff)
downloadgcc-6cdc2d6f2a39206a9721f6463a8604fe2f1b3dd2.tar.gz
* dump.c (dequeue_and_dump): Dump DECL_EXTERNAL.
* ir.texi: Document DECL_EXTERNAL. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29710 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/dump.c')
-rw-r--r--gcc/cp/dump.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cp/dump.c b/gcc/cp/dump.c
index 845a467663b..747e28d9707 100644
--- a/gcc/cp/dump.c
+++ b/gcc/cp/dump.c
@@ -607,6 +607,8 @@ dequeue_and_dump (di)
dump_child ("mngl", DECL_ASSEMBLER_NAME (t));
dump_child ("args", DECL_ARGUMENTS (t));
}
+ if (DECL_EXTERNAL (t))
+ dump_string (di, "undefined");
if (TREE_PUBLIC (t))
dump_string(di, "extern");
else