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
a3b609df
Commit
a3b609df
authored
Apr 23, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Apr 23, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-ssa-dom.c: Fix formatting.
From-SVN: r98601
parent
721425b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
gcc/ChangeLog
+2
-0
gcc/tree-ssa-dom.c
+8
-8
No files found.
gcc/ChangeLog
View file @
a3b609df
...
...
@@ -9,6 +9,8 @@
* tree.h: Add prototypes for fold_unary, fold_binary,
fold_ternary.
* tree-ssa-dom.c: Fix formatting.
2005-04-22 Diego Novillo <dnovillo@redhat.com>
* Makefile.in (tree-into-ssa.o): Add dependency on PARAMS_H.
...
...
gcc/tree-ssa-dom.c
View file @
a3b609df
...
...
@@ -431,17 +431,18 @@ tree_ssa_dominator_optimize (void)
free_all_edge_infos
();
{
block_stmt_iterator
bsi
;
basic_block
bb
;
FOR_EACH_BB
(
bb
)
{
for
(
bsi
=
bsi_start
(
bb
);
!
bsi_end_p
(
bsi
);
bsi_next
(
&
bsi
))
block_stmt_iterator
bsi
;
basic_block
bb
;
FOR_EACH_BB
(
bb
)
{
update_stmt_if_modified
(
bsi_stmt
(
bsi
));
for
(
bsi
=
bsi_start
(
bb
);
!
bsi_end_p
(
bsi
);
bsi_next
(
&
bsi
))
{
update_stmt_if_modified
(
bsi_stmt
(
bsi
));
}
}
}
}
/* Thread jumps, creating duplicate blocks as needed. */
cfg_altered
|=
thread_through_all_blocks
();
...
...
@@ -1238,7 +1239,6 @@ record_equivalences_from_phis (basic_block bb)
if
(
i
==
PHI_NUM_ARGS
(
phi
))
bitmap_set_bit
(
nonzero_vars
,
SSA_NAME_VERSION
(
PHI_RESULT
(
phi
)));
}
}
...
...
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