1999-09-11 Donn Terry <donn@interix.com>

* 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.
This commit is contained in:
Ian Lance Taylor 1999-09-12 02:27:58 +00:00
parent 0723899b7e
commit 0561a208f8
4 changed files with 39 additions and 15 deletions

View file

@ -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;