aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1992-10-14 07:17:03 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1992-10-14 07:17:03 -0400
commiteb9aa33885d0bc047be9c06137bf2044a02b3bdf (patch)
tree8942cad9c4ed15ebf8f1fc13e196dedc2eefe9b7 /gcc
parenta4f6608ca2562a0bd05493406beee11e1dfe89fd (diff)
downloadgcc-eb9aa33885d0bc047be9c06137bf2044a02b3bdf.zip
gcc-eb9aa33885d0bc047be9c06137bf2044a02b3bdf.tar.gz
gcc-eb9aa33885d0bc047be9c06137bf2044a02b3bdf.tar.bz2
(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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/a29k/a29k.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/a29k/a29k.c b/gcc/config/a29k/a29k.c
index ad1a620..4427185 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