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
2e24fa83
Commit
2e24fa83
authored
Jun 20, 2004
by
Zdenek Dvorak
Committed by
Zdenek Dvorak
Jun 20, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-ssa-pre.c (compute_antic): Keep BB_VISITED flag zeroed.
From-SVN: r83418
parent
160874e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+4
-0
gcc/tree-ssa-pre.c
+6
-1
No files found.
gcc/ChangeLog
View file @
2e24fa83
2004-06-20 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* tree-ssa-pre.c (compute_antic): Keep BB_VISITED flag zeroed.
2004-06-20 Richard Henderson <rth@redhat.com>
* stmt.c (warn_if_unused_value): Add locus argument.
...
...
gcc/tree-ssa-pre.c
View file @
2e24fa83
...
...
@@ -1286,7 +1286,8 @@ compute_antic (void)
FOR_ALL_BB
(
bb
)
{
ANTIC_IN
(
bb
)
=
set_new
(
true
);
bb
->
flags
&=
~
BB_VISITED
;
if
(
bb
->
flags
&
BB_VISITED
)
abort
();
}
while
(
changed
)
...
...
@@ -1295,6 +1296,10 @@ compute_antic (void)
changed
=
false
;
changed
=
compute_antic_aux
(
EXIT_BLOCK_PTR
);
}
FOR_ALL_BB
(
bb
)
{
bb
->
flags
&=
~
BB_VISITED
;
}
if
(
num_iterations
>
2
&&
dump_file
&&
(
dump_flags
&
TDF_STATS
))
fprintf
(
dump_file
,
"compute_antic required %d iterations
\n
"
,
num_iterations
);
}
...
...
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