diff options
author | Doug Evans <dje@gnu.org> | 1996-05-09 01:04:34 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-09 01:04:34 +0000 |
commit | 0821c881a28809b77b4b77d65a7b5d31ba6202e3 (patch) | |
tree | 887123d91b9db0ea8ce4d6d999c90c04b6443ce3 /gcc | |
parent | 49a2e5b2f7c8519c45de0bb772268b2e95d99469 (diff) | |
download | gcc-0821c881a28809b77b4b77d65a7b5d31ba6202e3.zip gcc-0821c881a28809b77b4b77d65a7b5d31ba6202e3.tar.gz gcc-0821c881a28809b77b4b77d65a7b5d31ba6202e3.tar.bz2 |
function.c (aggregate_value_p): Return 1 if TREE_ADDRESSABLE.
* function.c (aggregate_value_p): Return 1 if TREE_ADDRESSABLE.
* pa/pa.h (RETURN_IN_MEMORY): No longer test for TREE_ADDRESSABLE.
From-SVN: r11958
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index f4ae2e4..27e170e 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -593,7 +593,7 @@ do { \ /* SOM ABI says that objects larger than 64 bits are returned in memory. */ #define DEFAULT_PCC_STRUCT_RETURN 0 #define RETURN_IN_MEMORY(TYPE) \ - (int_size_in_bytes (TYPE) > 8 || TREE_ADDRESSABLE (TYPE)) + (int_size_in_bytes (TYPE) > 8) /* Register in which address to store a structure value is passed to a function. */ |