diff options
author | Jose E. Marchesi <jose.marchesi@oracle.com> | 2024-12-14 19:15:34 +0100 |
---|---|---|
committer | Jose E. Marchesi <jose.marchesi@oracle.com> | 2024-12-14 19:15:34 +0100 |
commit | 6866547e2421cc40606c13c2c3621a3d9121e893 (patch) | |
tree | 6a0c2da6c8aa701da23515e2945abf9de4c55fb2 /gcc | |
parent | a7df4961d171ef071bd0972335d6f116d420eb13 (diff) | |
download | gcc-6866547e2421cc40606c13c2c3621a3d9121e893.zip gcc-6866547e2421cc40606c13c2c3621a3d9121e893.tar.gz gcc-6866547e2421cc40606c13c2c3621a3d9121e893.tar.bz2 |
bpf: fix build adding new required arg to RESOLVE_OVERLOADED_BUILTIN
gcc/ChangeLog
* config/bpf/bpf.cc (bpf_resolve_overloaded_builtin): Add argument
`complain'.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/bpf/bpf.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/bpf/bpf.cc b/gcc/config/bpf/bpf.cc index fd913ec..9a927e3 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) |