https://gcc.gnu.org/g:6866547e2421cc40606c13c2c3621a3d9121e893
commit r15-6256-g6866547e2421cc40606c13c2c3621a3d9121e893 Author: Jose E. Marchesi <jose.march...@oracle.com> Date: Sat Dec 14 19:15:34 2024 +0100 bpf: fix build adding new required arg to RESOLVE_OVERLOADED_BUILTIN gcc/ChangeLog * config/bpf/bpf.cc (bpf_resolve_overloaded_builtin): Add argument `complain'. Diff: --- gcc/config/bpf/bpf.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/config/bpf/bpf.cc b/gcc/config/bpf/bpf.cc index fd913ecdb655..9a927e3a6ff1 100644 --- a/gcc/config/bpf/bpf.cc +++ b/gcc/config/bpf/bpf.cc @@ -1084,7 +1084,8 @@ bpf_expand_builtin (tree exp, rtx target ATTRIBUTE_UNUSED, #define TARGET_EXPAND_BUILTIN bpf_expand_builtin static tree -bpf_resolve_overloaded_builtin (location_t loc, tree fndecl, void *arglist) +bpf_resolve_overloaded_builtin (location_t loc, tree fndecl, void *arglist, + bool complain ATTRIBUTE_UNUSED) { int code = DECL_MD_FUNCTION_CODE (fndecl); if (code > BPF_CORE_BUILTINS_MARKER)