From 1b8297c13f94c9dd27b5f726d388cc09d2d8a391 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Tue, 6 Apr 1993 12:28:47 -0700 Subject: [PATCH] (init_function_start): Always set current_funtion_returns_pcc_struct if PCC_STATIC_STRUCT_RETURN defined. From-SVN: r4031 --- gcc/function.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gcc/function.c b/gcc/function.c index c0baec3c12e..6b219e9aad9 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -4156,11 +4156,9 @@ init_function_start (subr, filename, line) if (aggregate_value_p (DECL_RESULT (subr))) { #ifdef PCC_STATIC_STRUCT_RETURN - if (flag_pcc_struct_return) - current_function_returns_pcc_struct = 1; - else + current_function_returns_pcc_struct = 1; #endif - current_function_returns_struct = 1; + current_function_returns_struct = 1; } /* Warn if this value is an aggregate type, -- 2.30.2