mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-03 10:20:42 +08:00
c/99224 - avoid ICEing on invalid __builtin_next_arg
This avoids crashes with __builtin_next_arg on non-parameters. For the specific testcase we arrive with an anonymous SSA_NAME so that SSA_NAME_VAR becomes NULL and we crash. 2021-02-24 Richard Biener <rguenther@suse.de> PR c/99224 * builtins.c (fold_builtin_next_arg): Avoid NULL arg. * gcc.dg/pr99224.c: New testcase.
This commit is contained in:
parent
71e24b0601
commit
084963dcac
@ -12597,7 +12597,8 @@ fold_builtin_next_arg (tree exp, bool va_start_p)
|
||||
arg = CALL_EXPR_ARG (exp, 0);
|
||||
}
|
||||
|
||||
if (TREE_CODE (arg) == SSA_NAME)
|
||||
if (TREE_CODE (arg) == SSA_NAME
|
||||
&& SSA_NAME_VAR (arg))
|
||||
arg = SSA_NAME_VAR (arg);
|
||||
|
||||
/* We destructively modify the call to be __builtin_va_start (ap, 0)
|
||||
|
6
gcc/testsuite/gcc.dg/pr99224.c
Normal file
6
gcc/testsuite/gcc.dg/pr99224.c
Normal file
@ -0,0 +1,6 @@
|
||||
/* { dg-do compile } */
|
||||
|
||||
void f (char *c, ...)
|
||||
{
|
||||
__builtin_next_arg (*c); /* { dg-warning "not last named argument" } */
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user