Commit ed75b1d6 by Eric Christopher Committed by Eric Christopher

targhooks.c (default_return_in_memory): Fix default definition.

2003-09-04  Eric Christopher  <echristo@redhat.com>

	* targhooks.c (default_return_in_memory): Fix default
	definition.

From-SVN: r71082
parent 45849738
2003-09-04 Eric Christopher <echristo@redhat.com>
* targhooks.c (default_return_in_memory): Fix default
definition.
2003-09-04 Bernardo Innocenti <bernie@develer.com>
* config/m68k/m68k.c (m68k_coff_asm_named_section): Restore
......
......@@ -107,7 +107,7 @@ bool
default_return_in_memory (tree type,
tree fntype ATTRIBUTE_UNUSED)
{
return RETURN_IN_MEMORY (type);
return (TYPE_MODE (TYPE) == BLKmode);
}
rtx
......
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