From: Doug Evans Date: Mon, 15 Mar 1993 21:43:27 +0000 (+0000) Subject: * (assign_parms): Remove unnecessary #ifdef. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=682a59faae257c47f538afab5b31a8e62a6fd42b;p=gcc.git * (assign_parms): Remove unnecessary #ifdef. From-SVN: r3747 --- 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;