mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-04 16:31:30 +00:00
[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:
parent
4fd3d972af
commit
f11f0c5477
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue