* pa.h (FUNCTION_ARG_ADVANCE): Warning removal.

From-SVN: r33713
This commit is contained in:
Rodney Brown 2000-05-05 16:34:06 +00:00 committed by Jeff Law
parent 7d76ae5622
commit d8bea1c60d
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2000-05-03 Rodney Brown <RodneyBrown@mynd.com>
* pa.h (FUNCTION_ARG_ADVANCE): Warning removal.
Fri May 5 10:29:21 2000 Marc Espie <espie@cvs.openbsd.org>
* config/openbsd.h (LINK_SPEC): pass correct flags to ld

View File

@ -727,10 +727,9 @@ struct hppa_args {int words, nargs_prototype, indirect; };
#define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \
{ (CUM).nargs_prototype--; \
((((CUM).words & 01) && (TYPE) != 0 \
&& FUNCTION_ARG_SIZE(MODE, TYPE) > 1) \
&& (CUM).words++), \
(CUM).words += FUNCTION_ARG_SIZE(MODE, TYPE); \
(CUM).words += FUNCTION_ARG_SIZE(MODE, TYPE) \
+ (((CUM).words & 01) && (TYPE) != 0 \
&& FUNCTION_ARG_SIZE(MODE, TYPE) > 1); \
}
/* Determine where to put an argument to a function.