diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-16 19:00:04 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-16 19:00:04 +0000 |
commit | 3d745be3fca9cfd3cbfb09c224a6c7312bec4de3 (patch) | |
tree | f8dfe8091bc9c5da1476d6368bf476b16a76cabd /gdb/ChangeLog | |
parent | b57a636e4b4d23ba89c9d18118ed231500b0de06 (diff) | |
download | gdb-3d745be3fca9cfd3cbfb09c224a6c7312bec4de3.zip gdb-3d745be3fca9cfd3cbfb09c224a6c7312bec4de3.tar.gz gdb-3d745be3fca9cfd3cbfb09c224a6c7312bec4de3.tar.bz2 |
gdb/
Code cleanup.
* skip.c (skip_function_command, skip_file_command, skip_info): Remove
unused forward declarations.
(skip_file_command): Make variables symtab and filename targets const.
Use proper 0 vs. NULL constant everywhere.
(skip_function_command): Use proper 0 vs. NULL constant everywhere.
Include empty line after declarations. Use GNU spacing in a comment.
Do not use strlen for end of string check.
(skip_info): Use proper 0 vs. NULL constant everywhere. Add column 5
comments.
(skip_enable_command, skip_disable_command, skip_delete_command)
(add_skiplist_entry): Use proper 0 vs. NULL constant everywhere.
(function_pc_is_marked_for_skip): Make variable filename target const.
Use proper 0 vs. NULL constant everywhere. Fix GNU non-compliant
comment formatting.
(skip_re_set): Add empty line after function comment. Use proper 0 vs.
NULL constant everywhere. Include empty line after declarations. Make
variable symtab target const. Do not use strlen for end of string
check.
gdb/doc/
* gdbint.texinfo (Coding Standards) (C Usage): New rule for 0 vs. NULL.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0012638..4c5b5be 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,6 +1,28 @@ 2012-12-16 Jan Kratochvil <jan.kratochvil@redhat.com> Code cleanup. + * skip.c (skip_function_command, skip_file_command, skip_info): Remove + unused forward declarations. + (skip_file_command): Make variables symtab and filename targets const. + Use proper 0 vs. NULL constant everywhere. + (skip_function_command): Use proper 0 vs. NULL constant everywhere. + Include empty line after declarations. Use GNU spacing in a comment. + Do not use strlen for end of string check. + (skip_info): Use proper 0 vs. NULL constant everywhere. Add column 5 + comments. + (skip_enable_command, skip_disable_command, skip_delete_command) + (add_skiplist_entry): Use proper 0 vs. NULL constant everywhere. + (function_pc_is_marked_for_skip): Make variable filename target const. + Use proper 0 vs. NULL constant everywhere. Fix GNU non-compliant + comment formatting. + (skip_re_set): Add empty line after function comment. Use proper 0 vs. + NULL constant everywhere. Include empty line after declarations. Make + variable symtab target const. Do not use strlen for end of string + check. + +2012-12-16 Jan Kratochvil <jan.kratochvil@redhat.com> + + Code cleanup. * breakpoint.c (clear_command): Remove variable sal_name_len and its initialization, remove it from the compare_filenames_for_search call. * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable |