From 682a59faae257c47f538afab5b31a8e62a6fd42b Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Mon, 15 Mar 1993 21:43:27 +0000 Subject: [PATCH] * (assign_parms): Remove unnecessary #ifdef. From-SVN: r3747 --- gcc/function.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gcc/function.c b/gcc/function.c index 6b3f5f538a1..4e7e5d72172 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -2998,12 +2998,8 @@ assign_parms (fndecl, second_time) for its ultimate type, don't use that slot after entry. We'll make another stack slot, if we need one. */ { -#ifdef FUNCTION_ARG_BOUNDARY int thisparm_boundary = FUNCTION_ARG_BOUNDARY (passed_mode, passed_type); -#else - int thisparm_boundary = PARM_BOUNDARY; -#endif if (GET_MODE_ALIGNMENT (nominal_mode) > thisparm_boundary) stack_parm = 0; -- 2.30.2