From: Richard Kenner Date: Wed, 14 Oct 1992 11:17:03 +0000 (-0400) Subject: (call, call_value): Don't use call_operand, since checking for X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb9aa33885d0bc047be9c06137bf2044a02b3bdf;p=gcc.git (call, call_value): Don't use call_operand, since checking for recursive calls at this point is not safe. (const_16_operand, const_24_operand, gpc_reg_or_immediate_operand): Fix typo in declaration of MODE. (and_operand, add_operand): Likwise. From-SVN: r2457 --- diff --git a/gcc/config/a29k/a29k.c b/gcc/config/a29k/a29k.c index ad1a62035ec..44271855b27 100644 --- a/gcc/config/a29k/a29k.c +++ b/gcc/config/a29k/a29k.c @@ -157,7 +157,7 @@ const_8_operand (op, mode) int const_16_operand (op, mode) rtx op; - enum machine_mode; + enum machine_mode mode; { return shift_constant_operand (op, mode, 16); } @@ -165,7 +165,7 @@ const_16_operand (op, mode) int const_24_operand (op, mode) rtx op; - enum machine_mode; + enum machine_mode mode; { return shift_constant_operand (op, mode, 24); } @@ -287,7 +287,7 @@ srcb_operand (op, mode) int gpc_reg_or_immediate_operand (op, mode) rtx op; - enum machine_mode; + enum machine_mode mode; { return gpc_reg_operand (op, mode) || immediate_operand (op, mode); } @@ -298,7 +298,7 @@ gpc_reg_or_immediate_operand (op, mode) int and_operand (op, mode) rtx op; - enum machine_mode; + enum machine_mode mode; { return (srcb_operand (op, mode) || (GET_CODE (op) == CONST_INT @@ -312,7 +312,7 @@ and_operand (op, mode) int add_operand (op, mode) rtx op; - enum machine_mode; + enum machine_mode mode; { return (srcb_operand (op, mode) || (GET_CODE (op) == CONST_INT