some minor fixes, renamed ch7 stuff to ch3

This commit is contained in:
eck
1989-09-25 14:28:10 +00:00
parent fa4e6eecb4
commit 00027d3893
15 changed files with 1281 additions and 92 deletions

View File

@@ -337,7 +337,7 @@ do_return_expr(expr)
/* do_return_expr() generates the expression and the jump for
a return statement with an expression.
*/
ch7cast(&expr, RETURN, func_type);
ch3cast(&expr, RETURN, func_type);
code_expr(expr, RVAL, TRUE, NO_LABEL, NO_LABEL);
C_bra(return_label);
return_expr_occurred = 1;
@@ -504,7 +504,7 @@ loc_init(expr, id)
}
}
else { /* not embraced */
ch7cast(&expr, '=', tp); /* may modify expr */
ch3cast(&expr, '=', tp); /* may modify expr */
#ifndef LINT
{
struct value vl;