]> gcc.gnu.org Git - gcc.git/commit
c-family: Fix ICE on __builtin_speculation_safe_value () [PR94755]
authorJakub Jelinek <jakub@redhat.com>
Mon, 27 Apr 2020 14:05:03 +0000 (16:05 +0200)
committerJakub Jelinek <jakub@redhat.com>
Wed, 16 Sep 2020 17:19:43 +0000 (19:19 +0200)
commitd6a341eb9170fdb21aee235142d1f09e6dc5c5cd
treee699fa0c5d3a1d7ea794573c1848777fb220e500
parente9dbd80b5e62a126ccb40970f0fb233f7e0ac3a6
c-family: Fix ICE on __builtin_speculation_safe_value () [PR94755]

When this builtin has no parameters, speculation_safe_value_resolve_call
returns BUILT_IN_NONE, but resolve_overloaded_builtin uselessly
dereferences the first param just to return error_mark_node immediately.

The following patch rearranges it so that we only read the first parameter
if fncode is not BUILT_IN_NONE.

2020-04-27  Jakub Jelinek  <jakub@redhat.com>

PR c/94755
* c-common.c (resolve_overloaded_builtin): Return error_mark_node for
fncode == BUILT_IN_NONE before initialization of first_param.

* c-c++-common/pr94755.c: New test.

(cherry picked from commit 26d76be7af6db75aaab662f4e93395f4ff8acb38)
gcc/c-family/c-common.c
gcc/testsuite/c-c++-common/pr94755.c [new file with mode: 0644]
This page took 0.069629 seconds and 6 git commands to generate.