mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-08 02:20:39 +08:00
* symtab.c (dump_symtab_base): Fix dumping of asm lists.
From-SVN: r186609
This commit is contained in:
parent
8a72417502
commit
fe0bd630ff
@ -1,3 +1,7 @@
|
||||
2012-04-19 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* symtab.c (dump_symtab_base): Fix dumping of asm lists.
|
||||
|
||||
2012-04-19 David Edelsohn <dje.gcc@gmail.com>
|
||||
|
||||
* config/rs6000/sync.md (fetchop_name): Change ior attribute to "or".
|
||||
|
@ -378,6 +378,8 @@ dump_symtab_base (FILE *f, symtab_node node)
|
||||
fprintf (f, " in_other_partition");
|
||||
if (node->symbol.used_from_other_partition)
|
||||
fprintf (f, " used_from_other_partition");
|
||||
if (node->symbol.force_output)
|
||||
fprintf (f, " force_output");
|
||||
if (node->symbol.resolution != LDPR_UNKNOWN)
|
||||
fprintf (f, " %s",
|
||||
ld_plugin_symbol_resolution_names[(int)node->symbol.resolution]);
|
||||
@ -420,13 +422,13 @@ dump_symtab_base (FILE *f, symtab_node node)
|
||||
node->symbol.same_comdat_group->symbol.order);
|
||||
if (node->symbol.next_sharing_asm_name)
|
||||
fprintf (f, " next sharing asm name: %i\n",
|
||||
node->symbol.same_comdat_group->symbol.order);
|
||||
node->symbol.next_sharing_asm_name->symbol.order);
|
||||
if (node->symbol.previous_sharing_asm_name)
|
||||
fprintf (f, " previous sharing asm name: %i\n",
|
||||
node->symbol.same_comdat_group->symbol.order);
|
||||
node->symbol.previous_sharing_asm_name->symbol.order);
|
||||
|
||||
if (node->symbol.address_taken)
|
||||
fprintf (f, " Address is taken.");
|
||||
fprintf (f, " Address is taken.\n");
|
||||
|
||||
fprintf (f, " References: ");
|
||||
ipa_dump_references (f, &node->symbol.ref_list);
|
||||
|
Loading…
x
Reference in New Issue
Block a user