diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-25 20:39:22 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-25 20:39:22 +0100 |
| commit | 0203bb657ed09046dddc958be5322b1cd8c0a589 (patch) | |
| tree | b8977c0017c82d345eda0d4e6123183420f5ce48 /src/check_expr.cpp | |
| parent | 53f0c6ef1a73ab7afe21ed15d3d88a266af6a03c (diff) | |
Allow for non-constant simd vector compound types
Diffstat (limited to 'src/check_expr.cpp')
| -rw-r--r-- | src/check_expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 3dbecb1c0..9fd6acefd 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -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"); } } |