Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
fe0bd630
Commit
fe0bd630
authored
Apr 20, 2012
by
Jan Hubicka
Committed by
Jan Hubicka
Apr 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* symtab.c (dump_symtab_base): Fix dumping of asm lists.
From-SVN: r186609
parent
8a724175
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+4
-0
gcc/symtab.c
+5
-3
No files found.
gcc/ChangeLog
View file @
fe0bd630
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".
...
...
gcc/symtab.c
View file @
fe0bd630
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment