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
010dc908
Commit
010dc908
authored
Aug 20, 2001
by
John David Anglin
Committed by
John David Anglin
Aug 20, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa.h (RETURN_IN_MEMORY): Improve comment.
From-SVN: r45059
parent
5e427531
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/config/pa/pa.h
+3
-2
No files found.
gcc/ChangeLog
View file @
010dc908
2001
-
08
-
20
John
David
Anglin
<
dave
@hiauly1
.
hia
.
nrc
.
ca
>
*
pa
.
h
(
RETURN_IN_MEMORY
)
:
Improve
comment
.
2001
-
08
-
20
Janis
Johnson
<
janis187
@us
.
ibm
.
com
>
2001
-
08
-
20
Janis
Johnson
<
janis187
@us
.
ibm
.
com
>
*
gcc
.
misc
-
tests
/
gcov
.
exp
:
Add
support
for
branch
information
.
*
gcc
.
misc
-
tests
/
gcov
.
exp
:
Add
support
for
branch
information
.
...
...
gcc/config/pa/pa.h
View file @
010dc908
...
@@ -508,8 +508,9 @@ extern struct rtx_def *hppa_pic_save_rtx PARAMS ((void));
...
@@ -508,8 +508,9 @@ extern struct rtx_def *hppa_pic_save_rtx PARAMS ((void));
/* SOM ABI says that objects larger than 64 bits are returned in memory.
/* SOM ABI says that objects larger than 64 bits are returned in memory.
PA64 ABI says that objects larger than 128 bits are returned in memory.
PA64 ABI says that objects larger than 128 bits are returned in memory.
Note that int_size_in_bytes can return -1 if the size is variable
Note, int_size_in_bytes can return -1 if the size of the object is
or larger than an integer. */
variable or larger than the maximum value that can be expressed as
a HOST_WIDE_INT. */
#define RETURN_IN_MEMORY(TYPE) \
#define RETURN_IN_MEMORY(TYPE) \
((unsigned HOST_WIDE_INT) int_size_in_bytes (TYPE) > (TARGET_64BIT ? 16 : 8))
((unsigned HOST_WIDE_INT) int_size_in_bytes (TYPE) > (TARGET_64BIT ? 16 : 8))
...
...
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