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:
parent
1a9861e629
commit
be6acd4b3a
2 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue