Commit 1d1ade42 by Alexandre Oliva Committed by Alexandre Oliva

* config/sh/sh.h (FUNCTION_ARG_REGNO_P): Fix parenthesizing error.

From-SVN: r49674
parent 4210cb5b
2002-02-11 Alexandre Oliva <aoliva@redhat.com> 2002-02-11 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.h (FUNCTION_ARG_REGNO_P): Fix parenthesizing error.
* combine.c (try_combine): Apply substitutions in * combine.c (try_combine): Apply substitutions in
CALL_INSN_FUNCTION_USAGE too. CALL_INSN_FUNCTION_USAGE too.
......
...@@ -1421,10 +1421,10 @@ extern const enum reg_class reg_class_from_letter[]; ...@@ -1421,10 +1421,10 @@ extern const enum reg_class reg_class_from_letter[];
/* 1 if N is a possible register number for function argument passing. */ /* 1 if N is a possible register number for function argument passing. */
#define FUNCTION_ARG_REGNO_P(REGNO) \ #define FUNCTION_ARG_REGNO_P(REGNO) \
(((REGNO) >= FIRST_PARM_REG && (REGNO) < (FIRST_PARM_REG \ (((REGNO) >= FIRST_PARM_REG && (REGNO) < (FIRST_PARM_REG \
+ NPARM_REGS (SImode)) \ + NPARM_REGS (SImode))) \
|| (TARGET_FPU_ANY \ || (TARGET_FPU_ANY \
&& (REGNO) >= FIRST_FP_PARM_REG && (REGNO) < (FIRST_FP_PARM_REG \ && (REGNO) >= FIRST_FP_PARM_REG && (REGNO) < (FIRST_FP_PARM_REG \
+ NPARM_REGS (SFmode))))) + NPARM_REGS (SFmode))))
/* Define a data type for recording info about an argument list /* Define a data type for recording info about an argument list
during the scan of that argument list. This data type should during the scan of that argument list. This data type should
......
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