On Mon, May 20, 2019 at 11:48:45AM +0200, Martin Liška wrote:
> --- a/gcc/config/rs6000/driver-rs6000.c
> +++ b/gcc/config/rs6000/driver-rs6000.c
> @@ -266,7 +266,7 @@ elf_platform (void)
>         fatal_error (
>           input_location,
>           "Unsupported cpu name returned from kernel for "
> -         "%<-mcpu=native%>: %s\n"
> +         "%<-mcpu=native%>: %s.  "
>           "Please use an explicit cpu name.  Valid cpu names are: %s",
>           cpu, s);

This one is still incorrect, shouldn't start with capital letter and there
shouldn't be separate sentences and full stops.
Either it can be split into two diagnostics,
  error ("unsupported cpu name returned from kernel for %<-mcpu=native%>: %s", 
cpu);
  fatal_error (input_location, "please use an explicit cpu name; valid cpu 
names are: %s", s);
or reword somehow.

        Jakub

Reply via email to