Allow for non-constant simd vector compound types

This commit is contained in:
gingerBill
2022-05-25 20:39:22 +01:00
parent 53f0c6ef1a
commit 0203bb657e
2 changed files with 97 additions and 1 deletions

View File

@@ -7885,7 +7885,7 @@ ExprKind check_compound_literal(CheckerContext *c, Operand *o, Ast *node, Type *
if (t->kind == Type_SimdVector) {
if (!is_constant) {
error(node, "Expected all constant elements for a simd vector");
// error(node, "Expected all constant elements for a simd vector");
}
}