mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-06 01:11:59 +00:00
[qfcc] Use symbol expression for constexpr symbols
Prevents specialization constants from getting folded (and thus fixes the NaN normals for iqm models).
This commit is contained in:
parent
059936d18f
commit
3d488354b7
1 changed files with 3 additions and 0 deletions
|
@ -393,6 +393,9 @@ proc_symbol (const expr_t *expr, rua_ctx_t *ctx)
|
|||
}
|
||||
sym = symtab_lookup (current_symtab, sym->name);
|
||||
if (sym) {
|
||||
if (sym->is_constexpr) {
|
||||
return new_symbol_expr (sym);
|
||||
}
|
||||
if (sym->sy_type == sy_expr || sym->sy_type == sy_type_param) {
|
||||
return sym->expr;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue