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
30e5a198
Commit
30e5a198
authored
May 13, 2005
by
Josh Conner
Committed by
Julian Brown
May 13, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* arm.c (arm_return_in_memory): Add handling for vector return types.
From-SVN: r99666
parent
ee218a92
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+4
-0
gcc/config/arm/arm.c
+6
-0
No files found.
gcc/ChangeLog
View file @
30e5a198
2005-05-13 Josh Conner <jconner@apple.com>
* arm.c (arm_return_in_memory): Add handling for vector return types.
2005-05-13 David Ung <davidu@mips.com>
* config/mips/mips.h (processor_type): Add new PROCESSOR_4KP
...
...
gcc/config/arm/arm.c
View file @
30e5a198
...
...
@@ -2467,6 +2467,7 @@ arm_return_in_memory (tree type)
HOST_WIDE_INT
size
;
if
(
!
AGGREGATE_TYPE_P
(
type
)
&&
(
TREE_CODE
(
type
)
!=
VECTOR_TYPE
)
&&
!
(
TARGET_AAPCS_BASED
&&
TREE_CODE
(
type
)
==
COMPLEX_TYPE
))
/* All simple types are returned in registers.
For AAPCS, complex types are treated the same as aggregates. */
...
...
@@ -2481,6 +2482,11 @@ arm_return_in_memory (tree type)
return
(
size
<
0
||
size
>
UNITS_PER_WORD
);
}
/* To maximize backwards compatibility with previous versions of gcc,
return vectors up to 4 words in registers. */
if
(
TREE_CODE
(
type
)
==
VECTOR_TYPE
)
return
(
size
<
0
||
size
>
(
4
*
UNITS_PER_WORD
));
/* For the arm-wince targets we choose to be compatible with Microsoft's
ARM and Thumb compilers, which always return aggregates in memory. */
#ifndef ARM_WINCE
...
...
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