add -Wold-style-declaration
authorTom Tromey <tromey@redhat.com>
Mon, 1 Jul 2013 19:50:11 +0000 (19:50 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 1 Jul 2013 19:50:11 +0000 (19:50 +0000)
commit44d100c3b90473c1995acaf74ee3a424aedb9701
treefa7e15fe08c402ebed992183dce7380420e44314
parent2945b8076ce1f332cd9b9ddb7b8784283132d39b
add -Wold-style-declaration

This adds -Wold-style-declaration to gdb's list of warnings.

It turns out that a few places use "const static" rather than
"static const".  The former is deprecated according to the C standard.

Tested by rebuilding with --enable-targets=all on x86-64 Fedora 18.

* configure.ac (build_warnings): Add -Wold-style-declaration.
* configure: Rebuild.
* dsrec.c (make_srec): Use "static const", not "const static".
* h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
not "const static".
* mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
Use "static const", not "const static".
* mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
not "const static".
* moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
not "const static".
* rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
not "const static".
* v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
not "const static".
(v850_dbtrap_breakpoint_from_pc): Likewise.
* xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
not "const static".
gdb/ChangeLog
gdb/configure
gdb/configure.ac
gdb/dsrec.c
gdb/h8300-tdep.c
gdb/mi/mi-parse.c
gdb/mn10300-tdep.c
gdb/moxie-tdep.c
gdb/rs6000-tdep.c
gdb/v850-tdep.c
gdb/xstormy16-tdep.c
This page took 0.026277 seconds and 4 git commands to generate.