Fix thinko in last change.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Feb 2000 09:05:22 +0000 (09:05 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Feb 2000 09:05:22 +0000 (09:05 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32103 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/pa/pa.h

index 68cfa0b..3b42e98 100644 (file)
@@ -1055,11 +1055,11 @@ struct hppa_args {int words, nargs_prototype, indirect; };
 
 #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED)         \
   (((TYPE) && int_size_in_bytes (TYPE) > 8)                            \
-   || (MODE) && GET_MODE_SIZE (MODE) > 8)
+   || ((MODE) && GET_MODE_SIZE (MODE) > 8))
  
 #define FUNCTION_ARG_CALLEE_COPIES(CUM, MODE, TYPE, NAMED) \
   (((TYPE) && int_size_in_bytes (TYPE) > 8)               \
-   || (MODE) && GET_MODE_SIZE (MODE) > 8)
+   || ((MODE) && GET_MODE_SIZE (MODE) > 8))
 
 \f
 extern struct rtx_def *hppa_compare_op0, *hppa_compare_op1;