* pa.h (FUNCTION_ARG_ADVANCE): Warning removal.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 5 May 2000 16:34:06 +0000 (16:34 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 5 May 2000 16:34:06 +0000 (16:34 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33713 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/pa/pa.h

index c3c89c8..740bd89 100644 (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 
index bd6cd31..af0ac4f 100644 (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.