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
8588f797
Commit
8588f797
authored
Jun 02, 2009
by
Alexandre Oliva
Committed by
Alexandre Oliva
Jun 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* df-core.c (df_ref_debug): Honor -fdump-noaddr.
From-SVN: r148076
parent
45f39d78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
+11
-1
gcc/ChangeLog
+4
-0
gcc/df-core.c
+7
-1
No files found.
gcc/ChangeLog
View file @
8588f797
2009-06-02 Alexandre Oliva <aoliva@redhat.com>
* df-core.c (df_ref_debug): Honor -fdump-noaddr.
2009-06-02 Alexandre Oliva <aoliva@redhat.com>
* combine.c (move_deaths): Compare LUIDs within the same BB only.
2009-06-02 Alexandre Oliva <aoliva@redhat.com>
...
...
gcc/df-core.c
View file @
8588f797
...
...
@@ -2120,7 +2120,13 @@ df_ref_debug (df_ref ref, FILE *file)
DF_REF_FLAGS
(
ref
),
DF_REF_TYPE
(
ref
));
if
(
DF_REF_LOC
(
ref
))
fprintf
(
file
,
"loc %p(%p) chain "
,
(
void
*
)
DF_REF_LOC
(
ref
),
(
void
*
)
*
DF_REF_LOC
(
ref
));
{
if
(
flag_dump_noaddr
)
fprintf
(
file
,
"loc #(#) chain "
);
else
fprintf
(
file
,
"loc %p(%p) chain "
,
(
void
*
)
DF_REF_LOC
(
ref
),
(
void
*
)
*
DF_REF_LOC
(
ref
));
}
else
fprintf
(
file
,
"chain "
);
df_chain_dump
(
DF_REF_CHAIN
(
ref
),
file
);
...
...
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