From be6acd4b3a2c3a23baa80c11899a3cbb0969662b Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 4 Sep 2003 20:04:44 +0000 Subject: targhooks.c (default_return_in_memory): Allow unconverted ports. 2003-09-04 Eric Christopher * targhooks.c (default_return_in_memory): Allow unconverted ports. From-SVN: r71085 --- gcc/targhooks.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gcc/targhooks.c') diff --git a/gcc/targhooks.c b/gcc/targhooks.c index fe0bc0f5..7654e23 100644 --- a/gcc/targhooks.c +++ b/gcc/targhooks.c @@ -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 -- cgit v1.1