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
ac2afb64
Commit
ac2afb64
authored
Mar 12, 1993
by
James Van Artsdalen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(VOIDmode_compare_op): New operand predicate function.
From-SVN: r3714
parent
4cbb525c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
gcc/config/i386/i386.c
+11
-0
No files found.
gcc/config/i386/i386.c
View file @
ac2afb64
...
...
@@ -1480,6 +1480,17 @@ shift_op (op, mode)
||
GET_CODE
(
op
)
==
ROTATE
||
GET_CODE
(
op
)
==
ROTATERT
);
}
/* Return 1 if OP is COMPARE rtx with mode VOIDmode.
MODE is not used. */
int
VOIDmode_compare_op
(
op
,
mode
)
register
rtx
op
;
enum
machine_mode
mode
;
{
return
GET_CODE
(
op
)
==
COMPARE
&&
GET_MODE
(
op
)
==
VOIDmode
;
}
/* Output code to perform a 387 binary operation in INSN, one of PLUS,
MINUS, MULT or DIV. OPERANDS are the insn operands, where operands[3]
...
...
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