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
This commit is contained in:
Eric Christopher 2003-09-04 20:04:44 +00:00 committed by Eric Christopher
parent 1a9861e629
commit be6acd4b3a
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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