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
6a40a9d6
Commit
6a40a9d6
authored
Sep 25, 2001
by
David Edelsohn
Committed by
David Edelsohn
Sep 24, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* (lwa_operand): Address must be word aligned.
From-SVN: r45795
parent
6abba055
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.c
+4
-1
No files found.
gcc/ChangeLog
View file @
6a40a9d6
2001
-
09
-
24
David
Edelsohn
<
edelsohn
@gnu
.
org
>
*
rs6000
.
c
(
lwa_operand
)
:
Address
must
be
word
aligned
.
Mon
Sep
24
18
:
57
:
59
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
Mon
Sep
24
18
:
57
:
59
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
tree
.
c
(
type_hash_marked_p
)
:
Consider
as
marked
if
debug
symbol
*
tree
.
c
(
type_hash_marked_p
)
:
Consider
as
marked
if
debug
symbol
...
...
gcc/config/rs6000/rs6000.c
View file @
6a40a9d6
...
@@ -1308,7 +1308,10 @@ lwa_operand (op, mode)
...
@@ -1308,7 +1308,10 @@ lwa_operand (op, mode)
return
gpc_reg_operand
(
inner
,
mode
)
return
gpc_reg_operand
(
inner
,
mode
)
||
(
memory_operand
(
inner
,
mode
)
||
(
memory_operand
(
inner
,
mode
)
&&
GET_CODE
(
XEXP
(
inner
,
0
))
!=
PRE_INC
&&
GET_CODE
(
XEXP
(
inner
,
0
))
!=
PRE_INC
&&
GET_CODE
(
XEXP
(
inner
,
0
))
!=
PRE_DEC
);
&&
GET_CODE
(
XEXP
(
inner
,
0
))
!=
PRE_DEC
&&
(
GET_CODE
(
XEXP
(
inner
,
0
))
!=
PLUS
||
(
GET_CODE
(
XEXP
(
XEXP
(
inner
,
0
),
1
))
==
CONST_INT
&&
INTVAL
(
XEXP
(
XEXP
(
inner
,
0
),
1
))
%
4
==
0
)));
}
}
/* Return 1 if the operand, used inside a MEM, is a valid first argument
/* Return 1 if the operand, used inside a MEM, is a valid first argument
...
...
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