From: ceriel Date: Tue, 24 Feb 1987 15:41:16 +0000 (+0000) Subject: renamed a parameters because a local had the same name X-Git-Tag: release-5-5~4612 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=3a91ff6da5dc2761736d19c7d632db58f1c975a5;p=ack.git renamed a parameters because a local had the same name --- diff --git a/lang/cem/cemcom/eval.c b/lang/cem/cemcom/eval.c index 8b7d9d7f9..32b3f5b01 100644 --- a/lang/cem/cemcom/eval.c +++ b/lang/cem/cemcom/eval.c @@ -899,17 +899,17 @@ store_val(vl, tp) - static variable - local variable */ -load_val(expr, val) +load_val(expr, rlval) register struct expr *expr; /* expression containing the value */ - int val; /* generate either LVAL or RVAL */ + int rlval; /* generate either LVAL or RVAL */ { register struct type *tp = expr->ex_type; - int rvalue = (val == RVAL && expr->ex_lvalue != 0); + int rvalue = (rlval == RVAL && expr->ex_lvalue != 0); arith size = tp->tp_size; int tpalign = tp->tp_align; int al_on_word; register int inword, indword; - arith val = expr->VL_VALUE; + register arith val = expr->VL_VALUE; if (expr->VL_CLASS == Const) { if (rvalue) { /* absolute addressing */