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
ea9982a8
Commit
ea9982a8
authored
Dec 17, 2001
by
Tom Rix
Committed by
Tom Rix
Dec 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for -maix64 and medium sized struct passing.
From-SVN: r48102
parent
301d03af
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
19 deletions
+8
-19
gcc/ChangeLog
+5
-0
gcc/config/rs6000/rs6000.c
+3
-19
No files found.
gcc/ChangeLog
View file @
ea9982a8
2001
-
12
-
17
Tom
Rix
<
trix
@redhat
.
com
>
*
config
/
rs6000
/
rs6000
.
c
(
expand_block_move
)
:
Fix
limits
on
max
size
of
bytes
.
2001
-
12
-
17
Richard
Sandiford
<
rsandifo
@redhat
.
com
>
2001
-
12
-
17
Richard
Sandiford
<
rsandifo
@redhat
.
com
>
*
target
.
h
(
asm_out
.
byte_op
,
asm_out
.
aligned_op
,
asm_out
.
unaligned_op
,
*
target
.
h
(
asm_out
.
byte_op
,
asm_out
.
aligned_op
,
asm_out
.
unaligned_op
,
...
...
gcc/config/rs6000/rs6000.c
View file @
ea9982a8
...
@@ -4075,25 +4075,9 @@ expand_block_move (operands)
...
@@ -4075,25 +4075,9 @@ expand_block_move (operands)
if
(
bytes
<=
0
)
if
(
bytes
<=
0
)
return
1
;
return
1
;
/* Don't support real large moves. If string instructions are not used,
/* store_one_arg depends on expand_block_move to handle at least the size of
then don't generate more than 8 loads. */
reg_parm_stack_space. */
if
(
TARGET_STRING
)
if
(
bytes
>
(
TARGET_POWERPC64
?
64
:
32
))
{
if
(
bytes
>
8
*
4
)
return
0
;
}
else
if
(
!
STRICT_ALIGNMENT
)
{
if
(
TARGET_POWERPC64
&&
align
>=
4
)
{
if
(
bytes
>
8
*
8
)
return
0
;
}
else
if
(
bytes
>
8
*
4
)
return
0
;
}
else
if
(
bytes
>
8
*
align
)
return
0
;
return
0
;
/* Move the address into scratch registers. */
/* Move the address into scratch registers. */
...
...
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