Commit 02cba8df by Richard Sandiford Committed by Richard Sandiford

vx-common.h (RETURN_IN_MEMORY): Use ix86_sol10_return_in_memory.

gcc/
	* config/i386/vx-common.h (RETURN_IN_MEMORY): Use
	ix86_sol10_return_in_memory.

From-SVN: r124185
parent e797f7e1
2007-04-26 Richard Sandiford <richard@codesourcery.com> 2007-04-26 Richard Sandiford <richard@codesourcery.com>
* config/i386/vx-common.h (RETURN_IN_MEMORY): Use
ix86_sol10_return_in_memory.
2007-04-26 Richard Sandiford <richard@codesourcery.com>
* config/i386/i386.c (ix86_sol10_return_in_memory): Remove unused * config/i386/i386.c (ix86_sol10_return_in_memory): Remove unused
variables. variables.
......
...@@ -21,10 +21,7 @@ Boston, MA 02110-1301, USA. */ ...@@ -21,10 +21,7 @@ Boston, MA 02110-1301, USA. */
#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \ #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN) asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
/* The svr4 ABI for the i386 says that records and unions are returned /* VxWorks uses the same ABI as Solaris 10. */
in memory. */
#undef RETURN_IN_MEMORY #undef RETURN_IN_MEMORY
#define RETURN_IN_MEMORY(TYPE) \ #define RETURN_IN_MEMORY ix86_sol10_return_in_memory
(TYPE_MODE (TYPE) == BLKmode \
|| (VECTOR_MODE_P (TYPE_MODE (TYPE)) && int_size_in_bytes (TYPE) == 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