diff options
Diffstat (limited to 'gcc/config/pa/pa.h')
| -rw-r--r-- | gcc/config/pa/pa.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index bd6cd31..af0ac4f 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -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. |
