Commit b25b67d3 by Jeff Law

Fix thinko in last change.

From-SVN: r32103
parent 7fc4240a
...@@ -1055,11 +1055,11 @@ struct hppa_args {int words, nargs_prototype, indirect; }; ...@@ -1055,11 +1055,11 @@ struct hppa_args {int words, nargs_prototype, indirect; };
#define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) \ #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) \
(((TYPE) && int_size_in_bytes (TYPE) > 8) \ (((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) \ #define FUNCTION_ARG_CALLEE_COPIES(CUM, MODE, TYPE, NAMED) \
(((TYPE) && int_size_in_bytes (TYPE) > 8) \ (((TYPE) && int_size_in_bytes (TYPE) > 8) \
|| (MODE) && GET_MODE_SIZE (MODE) > 8) || ((MODE) && GET_MODE_SIZE (MODE) > 8))
extern struct rtx_def *hppa_compare_op0, *hppa_compare_op1; extern struct rtx_def *hppa_compare_op0, *hppa_compare_op1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment