Commit 04b1a223 by Jan Hubicka Committed by Jan Hubicka

* i386.h (RETURN_IN_MEMORY): Fix formating; reject TFmodes

From-SVN: r39693
parent 6d139650
Wed Feb 14 11:59:58 CET 2001 Jan Hubicka <jh@suse.cz>
* i386.h (RETURN_IN_MEMORY): Fix formating; reject TFmodes
Wed Feb 14 11:12:38 CET 2001 Jan Hubicka <jh@suse.cz> Wed Feb 14 11:12:38 CET 2001 Jan Hubicka <jh@suse.cz>
* i386-protos.h (ix86_memory_move_cost): Move offline. * i386-protos.h (ix86_memory_move_cost): Move offline.
......
...@@ -920,11 +920,11 @@ extern int ix86_arch; ...@@ -920,11 +920,11 @@ extern int ix86_arch;
should always be returned in memory. You should instead use should always be returned in memory. You should instead use
`DEFAULT_PCC_STRUCT_RETURN' to indicate this. */ `DEFAULT_PCC_STRUCT_RETURN' to indicate this. */
#define RETURN_IN_MEMORY(TYPE) \ #define RETURN_IN_MEMORY(TYPE) \
((TYPE_MODE (TYPE) == BLKmode) \ ((TYPE_MODE (TYPE) == BLKmode) \
|| (VECTOR_MODE_P (TYPE_MODE (TYPE)) && int_size_in_bytes (TYPE) == 8) \ || (VECTOR_MODE_P (TYPE_MODE (TYPE)) && int_size_in_bytes (TYPE) == 8)\
|| (int_size_in_bytes (TYPE) > 12 && TYPE_MODE (TYPE) != TImode \ || (int_size_in_bytes (TYPE) > 12 && TYPE_MODE (TYPE) != TImode \
&& ! VECTOR_MODE_P (TYPE_MODE (TYPE)))) && TYPE_MODE (TYPE) != TFmode && ! VECTOR_MODE_P (TYPE_MODE (TYPE))))
/* Define the classes of registers for register constraints in the /* Define the classes of registers for register constraints in the
......
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