Commit 010dc908 by John David Anglin Committed by John David Anglin

* pa.h (RETURN_IN_MEMORY): Improve comment.

From-SVN: r45059
parent 5e427531
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.
......
...@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment