[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:
Bill Currie 2025-02-04 07:38:09 +09:00
parent 059936d18f
commit 3d488354b7

View file

@ -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;
}