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
09026fe4
Commit
09026fe4
authored
Jul 01, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mov{si,sf,df}cc): Call gen_compare_reg to generate the condition code
register. From-SVN: r10097
parent
9cc883e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
9 deletions
+6
-9
gcc/config/arm/arm.md
+6
-9
No files found.
gcc/config/arm/arm.md
View file @
09026fe4
...
...
@@ -3323,9 +3323,8 @@
"
{
enum rtx_code code = GET_CODE (operands
[
1
]
);
rtx ccreg = gen_rtx (REG,
SELECT_CC_MODE (code, arm_compare_op0, arm_compare_op1),
CC_REGNUM);
rtx ccreg = gen_compare_reg (code, arm_compare_op0, arm_compare_op1,
arm_compare_fp);
operands
[
1
]
= gen_rtx (code, VOIDmode, ccreg, const0_rtx);
}")
...
...
@@ -3339,9 +3338,8 @@
"
{
enum rtx_code code = GET_CODE (operands
[
1
]
);
rtx ccreg = gen_rtx (REG,
SELECT_CC_MODE (code, arm_compare_op0, arm_compare_op1),
CC_REGNUM);
rtx ccreg = gen_compare_reg (code, arm_compare_op0, arm_compare_op1,
arm_compare_fp);
operands
[
1
]
= gen_rtx (code, VOIDmode, ccreg, const0_rtx);
}")
...
...
@@ -3355,9 +3353,8 @@
"
{
enum rtx_code code = GET_CODE (operands
[
1
]
);
rtx ccreg = gen_rtx (REG,
SELECT_CC_MODE (code, arm_compare_op0, arm_compare_op1),
CC_REGNUM);
rtx ccreg = gen_compare_reg (code, arm_compare_op0, arm_compare_op1,
arm_compare_fp);
operands
[
1
]
= gen_rtx (code, VOIDmode, ccreg, const0_rtx);
}")
...
...
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