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
37b80d2e
Commit
37b80d2e
authored
Jan 22, 2000
by
Bernd Schmidt
Committed by
Nick Clifton
Jan 22, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
catch a SUBREG containing a constant.
From-SVN: r31562
parent
5787d8da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.c
+3
-0
No files found.
gcc/ChangeLog
View file @
37b80d2e
2000
-
01
-
22
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
config
/
arm
/
arm
.
c
(
soft_df_operand
)
:
Reject
SUBREGs
containing
a
constant
.
2000
-
01
-
21
Jim
Wilson
<
wilson
@cygnus
.
com
>
*
fixinc
/
inclhack
.
tpl
:
Test
for
directory
before
trying
to
cd
into
it
.
...
...
gcc/config/arm/arm.c
View file @
37b80d2e
...
...
@@ -2307,6 +2307,9 @@ soft_df_operand (op, mode)
if
(
mode
!=
VOIDmode
&&
GET_MODE
(
op
)
!=
mode
)
return
FALSE
;
if
(
GET_CODE
(
op
)
==
SUBREG
&&
CONSTANT_P
(
SUBREG_REG
(
op
)))
return
FALSE
;
if
(
GET_CODE
(
op
)
==
SUBREG
)
op
=
SUBREG_REG
(
op
);
...
...
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