Commit 11734ce8 by Richard Stallman

(RETURN_IN_MEMORY): Define.

From-SVN: r6100
parent fc623854
...@@ -471,6 +471,10 @@ extern int target_flags; ...@@ -471,6 +471,10 @@ extern int target_flags;
#define INITIALIZE_PIC initialize_pic () #define INITIALIZE_PIC initialize_pic ()
#define FINALIZE_PIC finalize_pic () #define FINALIZE_PIC finalize_pic ()
/* SOM ABI says that objects larger than 64 bits are returned in memory. */
#define RETURN_IN_MEMORY(TYPE) \
(TYPE_MODE (TYPE) == BLKmode || int_size_in_bytes (TYPE) > 8)
/* Register in which address to store a structure value /* Register in which address to store a structure value
is passed to a function. */ is passed to a function. */
#define STRUCT_VALUE_REGNUM 28 #define STRUCT_VALUE_REGNUM 28
......
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