aboutsummaryrefslogtreecommitdiff
path: root/gcc/c/c-parser.c
diff options
context:
space:
mode:
authorAndrew Pinski <apinski@marvell.com>2021-09-17 04:59:03 +0000
committerAndrew Pinski <apinski@marvell.com>2021-09-28 20:01:14 +0000
commite12f66d96fe41c8ef8a0d01b6a8394cd6bce3978 (patch)
treefa2b27371e00155ebf3f6ee89a78f8cee7ffb4a1 /gcc/c/c-parser.c
parentc44c5f3d9f46705a262911c2098c1568d7e8ac2d (diff)
downloadgcc-e12f66d96fe41c8ef8a0d01b6a8394cd6bce3978.zip
gcc-e12f66d96fe41c8ef8a0d01b6a8394cd6bce3978.tar.gz
gcc-e12f66d96fe41c8ef8a0d01b6a8394cd6bce3978.tar.bz2
c: [PR32122] Require pointer types for computed gotos
So GCC has always accepted non-pointer types in computed gotos but that was wrong based on the documentation: Any expression of type void * is allowed. So this fixes the problem by requiring the type to be a pointer type. OK? Bootstrapped and tested on x86_64-linux-gnu with no regressions. PR c/32122 gcc/c/ChangeLog: * c-parser.c (c_parser_statement_after_labels): Pass the c_expr instead of the tree to c_finish_goto_ptr. * c-typeck.c (c_finish_goto_ptr): Change the second argument type to c_expr. * c-tree.h (c_finish_goto_ptr): Likewise. Error out if the expression was not of a pointer type. gcc/testsuite/ChangeLog: * gcc.dg/comp-goto-5.c: New test. * gcc.dg/comp-goto-6.c: New test.
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 fa29d2c..21ff25d 100644
--- a/gcc/c/c-parser.c
+++ b/gcc/c/c-parser.c
@@ -6141,7 +6141,7 @@ c_parser_statement_after_labels (c_parser *parser, bool *if_p,
c_parser_consume_token (parser);
val = c_parser_expression (parser);
val = convert_lvalue_to_rvalue (loc, val, false, true);
- stmt = c_finish_goto_ptr (loc, val.value);
+ stmt = c_finish_goto_ptr (loc, val);
}
else
c_parser_error (parser, "expected identifier or %<*%>");