[qfcc] Return an error expression for undefined symbols

Fixes some of the error spam that resulted from the expression
const-correctness pass a while back.
This commit is contained in:
Bill Currie 2024-07-04 23:23:06 +09:00
parent 4fd3d972af
commit f11f0c5477

View file

@ -100,7 +100,7 @@ convert_name (const expr_t *e)
return new_string_expr (GETSTR (e->loc.file));
}
if (!sym->table) {
error (e, "%s undefined", sym->name);
e = error (e, "%s undefined", sym->name);
sym->type = type_default;
//FIXME need a def
return e;