Hi! Since a recent commit, the BPF target produces a new warning due to two consecutive non-quoted spaces in a message. This'll fix it: gcc/ * config/bpf/bpf.cc (bpf_option_override): Fix doubled space. Ok? MfG, JBG diff --git a/gcc/config/bpf/bpf.cc b/gcc/config/bpf/bpf.cc index b268801d00c..d8693f8cfbe 100644 --- a/gcc/config/bpf/bpf.cc +++ b/gcc/config/bpf/bpf.cc @@ -258,7 +258,7 @@ bpf_option_override (void) { inform (input_location, "%<-fstack-protector%> does not work " - " on this architecture"); + "on this architecture"); flag_stack_protect = 0; } } --