aboutsummaryrefslogtreecommitdiff
path: root/gcc/c/c-parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c/c-parser.c')
-rw-r--r--gcc/c/c-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c/c-parser.c b/gcc/c/c-parser.c
index 7fae70f1611..f00d28d50c7 100644
--- a/gcc/c/c-parser.c
+++ b/gcc/c/c-parser.c
@@ -9090,7 +9090,7 @@ c_parser_simd_vectorlength (c_parser *parser)
while (true)
{
tree token_value = NULL_TREE;
- token_value = c_parser_expression (parser).value;
+ token_value = c_parser_expr_no_commas (parser, NULL).value;
if (!TREE_TYPE (token_value) || !TREE_CONSTANT (token_value)
|| !INTEGRAL_TYPE_P (TREE_TYPE (token_value)))
{