[qfcc] Use array count, not the const id for array size

Double emission of a constant... that one had me puzzled for a bit: 374?
That's not even a multiple of 32!
This commit is contained in:
Bill Currie 2025-02-16 11:23:56 +09:00
parent a8446cb87e
commit a3f4649b27

View file

@ -624,8 +624,7 @@ static unsigned
spirv_TypeArray (const type_t *type, spirvctx_t *ctx)
{
auto ele_type = dereference_type (type);
auto count_expr = new_int_expr (type_count (type), false);
unsigned count = spirv_value (count_expr, ctx);
unsigned count = type_count (type);
unsigned tid = spirv_Type (ele_type, ctx);
return spirv_type_array (tid, count, ctx);
}