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
3a8c5c77
Commit
3a8c5c77
authored
24 years ago
by
Richard Henderson
Committed by
Richard Henderson
24 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (init_propagate_block_info): Use pc_set.
From-SVN: r35353
parent
9145715c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+4
-0
gcc/flow.c
+4
-3
No files found.
gcc/ChangeLog
View file @
3a8c5c77
2000-07-30 Richard Henderson <rth@cygnus.com>
* flow.c (init_propagate_block_info): Use pc_set.
Sun Jul 30 20:58:34 MET DST 2000 Jan Hubicka <jh@suse.cz>
* i386.md (*lea_general_[123]) New insns and splits.
...
...
This diff is collapsed.
Click to expand it.
gcc/flow.c
View file @
3a8c5c77
...
...
@@ -3651,7 +3651,7 @@ init_propagate_block_info (bb, live, local_set, flags)
regset_head
diff_head
;
regset
diff
=
INITIALIZE_REG_SET
(
diff_head
);
basic_block
bb_true
,
bb_false
;
rtx
cond_true
,
cond_false
;
rtx
cond_true
,
cond_false
,
set_src
;
int
i
;
/* Identify the successor blocks. */
...
...
@@ -3680,11 +3680,12 @@ init_propagate_block_info (bb, live, local_set, flags)
}
/* Extract the condition from the branch. */
cond_true
=
XEXP
(
SET_SRC
(
PATTERN
(
bb
->
end
)),
0
);
set_src
=
SET_SRC
(
pc_set
(
bb
->
end
));
cond_true
=
XEXP
(
set_src
,
0
);
cond_false
=
gen_rtx_fmt_ee
(
reverse_condition
(
GET_CODE
(
cond_true
)),
GET_MODE
(
cond_true
),
XEXP
(
cond_true
,
0
),
XEXP
(
cond_true
,
1
));
if
(
GET_CODE
(
XEXP
(
SET_SRC
(
PATTERN
(
bb
->
end
))
,
1
))
==
PC
)
if
(
GET_CODE
(
XEXP
(
set_src
,
1
))
==
PC
)
{
rtx
t
=
cond_false
;
cond_false
=
cond_true
;
...
...
This diff is collapsed.
Click to expand it.
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