summaryrefslogtreecommitdiff
path: root/gcc/godump.c
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2011-01-11 22:58:35 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2011-01-11 22:58:35 +0000
commit3c6b311d8f0c6661d6d54f463052c0e4597a01bb (patch)
tree7fb03b7a58793be01beab7e1afb0ff1426858776 /gcc/godump.c
parent5070eb47c00ec3e8a110a51747dc3827a1da6dde (diff)
downloadgcc-3c6b311d8f0c6661d6d54f463052c0e4597a01bb.tar.gz
* godump.c (go_output_var): Don't output the variable if there is
already a type with the same name. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168683 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/godump.c')
-rw-r--r--gcc/godump.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/gcc/godump.c b/gcc/godump.c
index 3b4b766df93..4ec41f04156 100644
--- a/gcc/godump.c
+++ b/gcc/godump.c
@@ -715,13 +715,27 @@ go_output_typedef (struct godump_container *container, tree decl)
static void
go_output_var (struct godump_container *container, tree decl)
{
+ bool is_valid;
+
if (pointer_set_contains (container->decls_seen, decl)
|| pointer_set_contains (container->decls_seen, DECL_NAME (decl)))
return;
pointer_set_insert (container->decls_seen, decl);
pointer_set_insert (container->decls_seen, DECL_NAME (decl));
- if (!go_format_type (container, TREE_TYPE (decl), true, false))
+
+ is_valid = go_format_type (container, TREE_TYPE (decl), true, false);
+ if (is_valid
+ && htab_find_slot (container->type_hash,
+ IDENTIFIER_POINTER (DECL_NAME (decl)),
+ NO_INSERT) != NULL)
+ {
+ /* There is already a type with this name, probably from a
+ struct tag. Prefer the type to the variable. */
+ is_valid = false;
+ }
+ if (!is_valid)
fprintf (go_dump_file, "// ");
+
fprintf (go_dump_file, "var _%s ",
IDENTIFIER_POINTER (DECL_NAME (decl)));
go_output_type (container);