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
29e8f73f
Commit
29e8f73f
authored
Mar 08, 1996
by
Stan Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ix86_binary_operator_ok): one memory operand is OK.
From-SVN: r11502
parent
8b760293
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
gcc/config/i386/i386.c
+2
-3
No files found.
gcc/config/i386/i386.c
View file @
29e8f73f
...
...
@@ -1618,9 +1618,8 @@ ix86_binary_operator_ok (code, mode, operands)
enum
machine_mode
mode
;
rtx
operands
[
3
];
{
return
(
GET_CODE
(
operands
[
1
])
!=
MEM
&&
GET_CODE
(
operands
[
2
])
!=
MEM
&&
GET_CODE
(
operands
[
1
])
!=
CONST_INT
)
||
GET_RTX_CLASS
(
code
)
==
'c'
;
return
(
GET_CODE
(
operands
[
1
])
!=
MEM
||
GET_CODE
(
operands
[
2
])
!=
MEM
)
&&
(
GET_CODE
(
operands
[
1
])
!=
CONST_INT
||
GET_RTX_CLASS
(
code
)
==
'c'
);
}
/* Attempt to expand a unary operator. Make the expansion closer to the
...
...
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