From 2c204d40b2636a68416a6d41a806cc41ff095bea Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 18 Jan 2025 16:04:42 +0900 Subject: [PATCH] [qfcc] Check const_initializers option for constexpr This is probably not right for spir-v, but it fixes initialized defs in switch case labels (qc legacy with the defs). --- tools/qfcc/source/def.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/def.c b/tools/qfcc/source/def.c index e8b0dd8be..e54d4ab46 100644 --- a/tools/qfcc/source/def.c +++ b/tools/qfcc/source/def.c @@ -623,7 +623,7 @@ initialize_def (symbol_t *sym, const expr_t *init, defspace_t *space, init = assign_expr (new_symbol_expr (sym), init); // fold_constants takes care of int/float conversions append_expr (block, fold_constants (init)); - } else if (is_constexpr (init)) { + } else if (!options.code.const_initializers && is_constexpr (init)) { init = assign_expr (new_symbol_expr (sym), init); add_ctor_expr (init); } else {