From 0561a208f868f3f94e3760e0d68106c1abbd3dc8 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sun, 12 Sep 1999 02:27:58 +0000 Subject: 1999-09-11 Donn Terry * expr.c (expr): Change first parameter to int. * config/obj-coff.c: Add declarations for static functions. (coff_frob_symbol): Use SYM_AUXENT. * config/tc-i386.h (flag_16bit_code): Don't declare. --- gas/expr.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gas/expr.c') diff --git a/gas/expr.c b/gas/expr.c index fcc633f..acf2804 100644 --- a/gas/expr.c +++ b/gas/expr.c @@ -1616,10 +1616,11 @@ operator () /* Parse an expression. */ segT -expr (rank, resultP) - operator_rankT rank; /* Larger # is higher rank. */ +expr (rankarg, resultP) + int rankarg; /* Larger # is higher rank. */ expressionS *resultP; /* Deliver result here. */ { + operator_rankT rank = (operator_rankT) rankarg; segT retval; expressionS right; operatorT op_left; -- cgit v1.1