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
e9c6b69b
Commit
e9c6b69b
authored
Apr 10, 1999
by
Nick Clifton
Committed by
Nick Clifton
Apr 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow SUBREGs in place of REGs in soft_df_operand and di_operand
From-SVN: r26336
parent
7ac7b28f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.c
+8
-2
No files found.
gcc/ChangeLog
View file @
e9c6b69b
Sat
Apr
10
13
:
09
:
18
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
config
/
arm
/
arm
.
c
(
di_operand
)
:
Allow
SUBREGs
as
well
.
(
soft_df_operand
)
:
Allow
SUBREGs
as
well
.
Sat
Apr
10
06
:
14
:
31
1999
Jan
Hubicka
<
hubicka
@paru
.
cas
.
cz
>
*
extend
.
texi
(
Assembler
Instructions
with
C
Expression
Operands
)
:
...
...
gcc/config/arm/arm.c
View file @
e9c6b69b
...
...
@@ -2192,7 +2192,7 @@ power_of_two_operand (op, mode)
}
/* Return TRUE for a valid operand of a DImode operation.
Either: REG, CONST_DOUBLE or MEM(DImode_address).
Either: REG,
SUBREG,
CONST_DOUBLE or MEM(DImode_address).
Note that this disallows MEM(REG+REG), but allows
MEM(PRE/POST_INC/DEC(REG)). */
...
...
@@ -2204,6 +2204,9 @@ di_operand (op, mode)
if
(
s_register_operand
(
op
,
mode
))
return
TRUE
;
if
(
GET_CODE
(
op
)
==
SUBREG
)
op
=
SUBREG_REG
(
op
);
switch
(
GET_CODE
(
op
))
{
case
CONST_DOUBLE
:
...
...
@@ -2219,7 +2222,7 @@ di_operand (op, mode)
}
/* Return TRUE for a valid operand of a DFmode operation when -msoft-float.
Either: REG, CONST_DOUBLE or MEM(DImode_address).
Either: REG,
SUBREG,
CONST_DOUBLE or MEM(DImode_address).
Note that this disallows MEM(REG+REG), but allows
MEM(PRE/POST_INC/DEC(REG)). */
...
...
@@ -2231,6 +2234,9 @@ soft_df_operand (op, mode)
if
(
s_register_operand
(
op
,
mode
))
return
TRUE
;
if
(
GET_CODE
(
op
)
==
SUBREG
)
op
=
SUBREG_REG
(
op
);
switch
(
GET_CODE
(
op
))
{
case
CONST_DOUBLE
:
...
...
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