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
7739ebae
Commit
7739ebae
authored
Oct 17, 1999
by
Jeffrey A Law
Committed by
Jeff Law
Oct 17, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa.c (move_operand): Reject (lo_sum (reg) (unspec ...)).
From-SVN: r30060
parent
60588660
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+2
-0
gcc/config/pa/pa.c
+8
-0
No files found.
gcc/ChangeLog
View file @
7739ebae
Sun
Oct
17
15
:
22
:
50
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
pa
.
c
(
move_operand
)
:
Reject
(
lo_sum
(
reg
)
(
unspec
...)).
*
haifa
-
sched
.
c
(
add_dependence
)
:
Only
check
/
update
the
cache
if
it
exists
.
(
remove_dependence
)
:
Likewise
.
...
...
gcc/config/pa/pa.c
View file @
7739ebae
...
...
@@ -332,6 +332,14 @@ move_operand (op, mode)
op
=
XEXP
(
op
,
0
);
/* The LO_SUM part of a DLT reference is not considered a move_operand;
we must reject it here since it must be accepted by memory_address_p. */
if
(
GET_CODE
(
op
)
==
LO_SUM
&&
GET_CODE
(
XEXP
(
op
,
0
))
==
REG
&&
REG_OK_FOR_BASE_P
(
XEXP
(
op
,
0
))
&&
GET_CODE
(
XEXP
(
op
,
1
))
==
UNSPEC
)
return
0
;
/* Since move_operand is only used for source operands, we can always
allow scaled indexing! */
if
(
!
TARGET_DISABLE_INDEXING
...
...
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