From b46db6e4f48f2a4f1cf61373fd82be6fd8bc48aa Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 18 Jan 1993 10:44:27 -0800 Subject: [PATCH] (ROUND): Change macro name to ROUND_PARM. From-SVN: r3265 --- gcc/config/i960/i960.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/i960/i960.h b/gcc/config/i960/i960.h index 4bf2728a5ea..7da4dc65b2c 100644 --- a/gcc/config/i960/i960.h +++ b/gcc/config/i960/i960.h @@ -757,7 +757,7 @@ struct cum_args { int ca_nregparms; int ca_nstackparms; }; /* Define how to round to the next parameter boundary. This macro is used only in macro definitions below and/or i960.c. */ -#define ROUND(X, MULTIPLE_OF) \ +#define ROUND_PARM(X, MULTIPLE_OF) \ ((((X) + (MULTIPLE_OF) - 1) / (MULTIPLE_OF)) * MULTIPLE_OF) /* Initialize a variable CUM of type CUMULATIVE_ARGS -- 2.30.2