diff options
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 8d6cb96..81ddabc 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,5 +1,10 @@ 2013-04-19 Pedro Alves <palves@redhat.com> + * gdbint.texinfo (Misc Guidelines) <Compiler Warnings>: Write + "signedness" instead of "signness". + +2013-04-19 Pedro Alves <palves@redhat.com> + * gdbint.texinfo (Misc Guidelines) <Compiler Warnings>: Replace -Wno-pointer-sign text with text on -Wpointer-sign. diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index 34e75e2..3a04c18 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -6342,7 +6342,7 @@ but also calls to functions such as @code{fprintf_unfiltered}. @item -Wpointer-sign This helps make sure @value{GDBN} code uses @code{gdb_byte} which is really @code{unsigned char} for raw bytes instead of @code{char}, -whose signness is host-dependent. @sc{gcc} enables this with +whose signedness is host-dependent. @sc{gcc} enables this with @code{-Wall} since version 4.0. We enable it explicitly too to be decoupled from future @sc{gcc} (or other compiler)'s defaults. |