diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-18 10:44:27 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-18 10:44:27 -0800 |
commit | b46db6e4f48f2a4f1cf61373fd82be6fd8bc48aa (patch) | |
tree | 2c252a385b179bfb976b327490f9af3aebc0529d | |
parent | 025a8875baeb5ba0d4512b97e4a110bde49b230a (diff) | |
download | gcc-b46db6e4f48f2a4f1cf61373fd82be6fd8bc48aa.zip gcc-b46db6e4f48f2a4f1cf61373fd82be6fd8bc48aa.tar.gz gcc-b46db6e4f48f2a4f1cf61373fd82be6fd8bc48aa.tar.bz2 |
(ROUND): Change macro name to ROUND_PARM.
From-SVN: r3265
-rw-r--r-- | gcc/config/i960/i960.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i960/i960.h b/gcc/config/i960/i960.h index 4bf2728..7da4dc6 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 |