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
82f331ff
Commit
82f331ff
authored
May 27, 2009
by
Alexandre Oliva
Committed by
Alexandre Oliva
May 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cgraph.c (dump_cgraph_node): Honor -fdump-noaddr.
From-SVN: r147888
parent
d641c815
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+4
-0
gcc/cgraph.c
+4
-3
No files found.
gcc/ChangeLog
View file @
82f331ff
2009-05-27 Alexandre Oliva <aoliva@redhat.com>
* cgraph.c (dump_cgraph_node): Honor -fdump-noaddr.
2009-05-26 Basile Starynkevitch <basile@starynkevitch.net>
...
...
gcc/cgraph.c
View file @
82f331ff
/* Callgraph handling code.
Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
, 2009
Free Software Foundation, Inc.
Contributed by Jan Hubicka
...
...
@@ -1377,8 +1377,9 @@ void
dump_cgraph_node
(
FILE
*
f
,
struct
cgraph_node
*
node
)
{
struct
cgraph_edge
*
edge
;
fprintf
(
f
,
"%s/%i(%i) [%p]:"
,
cgraph_node_name
(
node
),
node
->
uid
,
node
->
pid
,
(
void
*
)
node
);
fprintf
(
f
,
"%s/%i(%i)"
,
cgraph_node_name
(
node
),
node
->
uid
,
node
->
pid
);
dump_addr
(
f
,
" @"
,
(
void
*
)
node
);
if
(
node
->
global
.
inlined_to
)
fprintf
(
f
,
" (inline copy in %s/%i)"
,
cgraph_node_name
(
node
->
global
.
inlined_to
),
...
...
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