Commit be6acd4b by Eric Christopher Committed by Eric Christopher

targhooks.c (default_return_in_memory): Allow unconverted ports.

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

	* targhooks.c (default_return_in_memory): Allow
	unconverted ports.

From-SVN: r71085
parent 1a9861e6
2003-09-04 Eric Christopher <echristo@redhat.com>
* targhooks.c (default_return_in_memory): Allow
unconverted ports.
2003-09-04 Eric Christopher <echristo@redhat.com>
* targhooks.c (default_return_in_memory): Fix typo
in last checkin.
......
......@@ -107,7 +107,11 @@ bool
default_return_in_memory (tree type,
tree fntype ATTRIBUTE_UNUSED)
{
#ifndef RETURN_IN_MEMORY
return (TYPE_MODE (type) == BLKmode);
#else
return RETURN_IN_MEMORY (type);
#endif
}
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