[Bug c/99291] maybe_warn_pass_by_reference uses outdated format string

2022-03-03 Thread roland.illig at gmx dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99291 --- Comment #6 from Roland Illig --- Still reproducible in GCC 12.

[Bug c/99291] maybe_warn_pass_by_reference uses outdated format string

2021-03-01 Thread marxin at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99291 Martin Liška changed: What|Removed |Added CC||marxin at gcc dot gnu.org,

[Bug c/99291] maybe_warn_pass_by_reference uses outdated format string

2021-02-27 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99291 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |NEW Keywords|

[Bug c/99291] maybe_warn_pass_by_reference uses outdated format string

2021-02-26 Thread roland.illig at gmx dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99291 --- Comment #4 from Roland Illig --- and another one, this time in aarch64.c: > error ("%<%s%> must be by itself for %<-mharden-sls=%>", str); This should be %qs as well.

[Bug c/99291] maybe_warn_pass_by_reference uses outdated format string

2021-02-26 Thread roland.illig at gmx dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99291 --- Comment #3 from Roland Illig --- same file, another one: > "version of `g` will be omitted, please " This is far from any coding conventions and should rather be %.

[Bug c/99291] maybe_warn_pass_by_reference uses outdated format string

2021-02-26 Thread roland.illig at gmx dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99291 --- Comment #2 from Roland Illig --- Plus, there is a typo: > %<-march=%s%>: Extension `%s' appear more than one time. Either it must be 'Extensions' or 'appears'.

[Bug c/99291] maybe_warn_pass_by_reference uses outdated format string

2021-02-26 Thread roland.illig at gmx dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99291 --- Comment #1 from Roland Illig --- similarly in common/config/riscv/riscv-common.c: > %<-march=%s%>: Extension `%s' appear more than one time. The `%s' is obsolete and should be replaced with %qs.