Commit 6d0f55e6 by Daniel Berlin

Fix accidental merge botch.

From-SVN: r44523
parent f96850af
......@@ -1294,8 +1294,8 @@ typedef struct rs6000_stack {
/* 1 if N is a possible register number for function argument passing.
On RS/6000, these are r3-r10 and fp1-fp13. */
#define FUNCTION_ARG_REGNO_P(N) \
((((N) - GP_ARG_MIN_REG) < (GP_ARG_NUM_REG)) \
|| (((N) - FP_ARG_MIN_REG) < (FP_ARG_NUM_REG)))
((unsigned)(((N) - GP_ARG_MIN_REG) < (unsigned)(GP_ARG_NUM_REG)) \
|| ((unsigned)((N) - FP_ARG_MIN_REG) < (unsigned)(FP_ARG_NUM_REG)))
/* A C structure for machine-specific, per-function data.
......
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