diff --git a/gcc/gimple-ssa-warn-access.cc b/gcc/gimple-ssa-warn-access.cc index 073f122af31b04014da2403684ad981ebd60961c..22c791d833a0b9b5415bb3ea21ff7e6a21e06625 100644 --- a/gcc/gimple-ssa-warn-access.cc +++ b/gcc/gimple-ssa-warn-access.cc @@ -2335,10 +2335,6 @@ pass_waccess::check_alloca (gcall *stmt) void pass_waccess::check_alloc_size_call (gcall *stmt) { - if (gimple_call_num_args (stmt) < 1) - /* Avoid invalid calls to functions without a prototype. */ - return; - tree fndecl = gimple_call_fndecl (stmt); if (fndecl && gimple_call_builtin_p (stmt, BUILT_IN_NORMAL)) { @@ -2367,13 +2363,19 @@ pass_waccess::check_alloc_size_call (gcall *stmt) the actual argument(s) at those indices in ALLOC_ARGS. */ int idx[2] = { -1, -1 }; tree alloc_args[] = { NULL_TREE, NULL_TREE }; + unsigned nargs = gimple_call_num_args (stmt); tree args = TREE_VALUE (alloc_size); idx[0] = TREE_INT_CST_LOW (TREE_VALUE (args)) - 1; + /* Avoid invalid calls to functions without a prototype. */ + if ((unsigned) idx[0] >= nargs) + return; alloc_args[0] = call_arg (stmt, idx[0]); if (TREE_CHAIN (args)) { idx[1] = TREE_INT_CST_LOW (TREE_VALUE (TREE_CHAIN (args))) - 1; + if ((unsigned) idx[1] >= nargs) + return; alloc_args[1] = call_arg (stmt, idx[1]); } diff --git a/gcc/testsuite/gcc.dg/pr102009.c b/gcc/testsuite/gcc.dg/pr102009.c new file mode 100644 index 0000000000000000000000000000000000000000..5b3a39bd0db9705efc27f705a4a8ddd5abd5fc7b --- /dev/null +++ b/gcc/testsuite/gcc.dg/pr102009.c @@ -0,0 +1,10 @@ +/* PR tree-optimization/102009 */ +/* { dg-do compile } */ + +void *realloc (); /* { dg-message "declared here" } */ + +void * +foo (void *p) +{ + return realloc (p); /* { dg-warning "too few arguments to built-in function 'realloc' expecting " } */ +}