expression nodes now can have a flag EX_ERROR

This commit is contained in:
dick
1986-03-27 18:17:48 +00:00
parent f2764393be
commit ad1feaf35c
11 changed files with 50 additions and 38 deletions

View File

@@ -129,6 +129,11 @@ code_case(expr)
return;
}
if (expr->ex_flags & EX_ERROR) {
/* is probably 0 anyway */
return;
}
expr->ex_type = sh->sh_type;
cut_size(expr);