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
28051ef5
Commit
28051ef5
authored
Aug 12, 1994
by
Stan Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use bcnd instead of bb0/bb1 for optimize cases
From-SVN: r7902
parent
5ce574f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
gcc/config/m88k/m88k.c
+8
-10
No files found.
gcc/config/m88k/m88k.c
View file @
28051ef5
...
@@ -2645,17 +2645,15 @@ emit_bcnd (op, label)
...
@@ -2645,17 +2645,15 @@ emit_bcnd (op, label)
rtx
label
;
rtx
label
;
{
{
if
(
m88k_compare_op1
==
const0_rtx
)
if
(
m88k_compare_op1
==
const0_rtx
)
emit_jump_insn
(
optimize
emit_jump_insn
(
gen_bcnd
(
?
gen_bxx
(
emit_test
(
op
,
VOIDmode
),
label
)
gen_rtx
(
op
,
VOIDmode
,
m88k_compare_op0
,
const0_rtx
),
:
gen_bcnd
(
gen_rtx
(
op
,
VOIDmode
,
label
));
m88k_compare_op0
,
const0_rtx
),
label
));
else
if
(
m88k_compare_op0
==
const0_rtx
)
else
if
(
m88k_compare_op0
==
const0_rtx
)
emit_jump_insn
(
optimize
emit_jump_insn
(
gen_bcnd
(
?
gen_bxx
(
emit_test
(
op
,
VOIDmode
),
label
)
gen_rtx
(
:
gen_bcnd
(
gen_rtx
(
swap_condition
(
op
),
VOIDmode
,
swap_condition
(
op
)
,
m88k_compare_op1
,
const0_rtx
),
VOIDmode
,
m88k_compare_op1
,
const0_rtx
),
label
));
label
));
else
if
(
op
!=
EQ
&&
op
!=
NE
)
else
if
(
op
!=
EQ
&&
op
!=
NE
)
emit_jump_insn
(
gen_bxx
(
emit_test
(
op
,
VOIDmode
),
label
));
emit_jump_insn
(
gen_bxx
(
emit_test
(
op
,
VOIDmode
),
label
));
else
else
...
...
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