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
d0bd8245
Commit
d0bd8245
authored
Jun 29, 2014
by
Jan Hubicka
Committed by
Jan Hubicka
Jun 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cgraph.c (dump_cgraph_node): Dump init&fini priorities.
From-SVN: r212113
parent
ba429440
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/cgraph.c
+4
-0
No files found.
gcc/ChangeLog
View file @
d0bd8245
2014
-
06
-
28
Jan
Hubicka
<
hubicka
@
ucw
.
cz
>
*
cgraph
.
c
(
dump_cgraph_node
):
Dump
init
&
fini
priorities
.
2014
-
06
-
28
Jan
Hubicka
<
hubicka
@
ucw
.
cz
>
*
tree
-
inline
.
c
(
remap_type_1
):
Do
not
duplicate
fields
that
are
shared
in
between
type
and
its
main
variant
.
...
...
gcc/cgraph.c
View file @
d0bd8245
...
...
@@ -1986,6 +1986,10 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node)
fprintf
(
f
,
" only_called_at_exit"
);
if
(
node
->
tm_clone
)
fprintf
(
f
,
" tm_clone"
);
if
(
DECL_STATIC_CONSTRUCTOR
(
node
->
decl
))
fprintf
(
f
,
" static_constructor (priority:%i)"
,
node
->
get_init_priority
());
if
(
DECL_STATIC_DESTRUCTOR
(
node
->
decl
))
fprintf
(
f
,
" static_destructor (priority:%i)"
,
node
->
get_fini_priority
());
fprintf
(
f
,
"
\n
"
);
...
...
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