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
40513dd3
Commit
40513dd3
authored
Nov 30, 2009
by
Jakub Jelinek
Committed by
Jakub Jelinek
Nov 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ipa-reference.c (propagate): Only dump bitmaps if computed.
From-SVN: r154818
parent
c5fdd4ad
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/ipa-reference.c
+3
-2
No files found.
gcc/ChangeLog
View file @
40513dd3
2009
-
11
-
30
Jakub
Jelinek
<
jakub
@
redhat
.
com
>
*
ipa
-
reference
.
c
(
propagate
):
Only
dump
bitmaps
if
computed
.
2009
-
11
-
30
Olga
Golovanevsky
<
olga
@
il
.
ibm
.
com
>
PR
middle
-
end
/
39806
gcc/ipa-reference.c
View file @
40513dd3
...
...
@@ -1390,6 +1390,7 @@ propagate (void)
fprintf
(
dump_file
,
"
\n
next cycle: %s/%i "
,
cgraph_node_name
(
w
),
w
->
uid
);
fprintf
(
dump_file
,
"
\n
locals read: "
);
if
(
w_l
->
statics_read
)
EXECUTE_IF_SET_IN_BITMAP
(
w_l
->
statics_read
,
0
,
index
,
bi
)
{
...
...
@@ -1398,14 +1399,14 @@ propagate (void)
}
fprintf
(
dump_file
,
"
\n
locals written: "
);
if
(
w_l
->
statics_written
)
EXECUTE_IF_SET_IN_BITMAP
(
w_l
->
statics_written
,
0
,
index
,
bi
)
{
fprintf
(
dump_file
,
"%s "
,
fprintf
(
dump_file
,
"%s "
,
get_static_name
(
index
));
}
w_info
=
(
struct
ipa_dfs_info
*
)
w
->
aux
;
w
=
w_info
->
next_cycle
;
}
...
...
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