Page MenuHomeFreeBSD

gnu/usr.bin/gdb/libgdb more build warning/bug fixes
Needs ReviewPublic

Authored by aprieger_llnw.com on Jul 24 2017, 8:33 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Jan 19, 3:06 AM
Unknown Object (File)
Fri, Jan 10, 11:47 AM
Unknown Object (File)
Nov 26 2024, 4:57 PM
Unknown Object (File)
Oct 5 2024, 3:30 AM
Unknown Object (File)
Oct 4 2024, 3:33 PM
Unknown Object (File)
Oct 3 2024, 12:50 PM
Unknown Object (File)
Oct 2 2024, 10:08 PM
Unknown Object (File)
Oct 1 2024, 7:09 AM
Subscribers

Details

Reviewers
kbowling
sbruno
Summary

Code changes to fix warnings/bugs during buildtime for the application in the folder gnu/usr.bin/gdb/libgdb

Diff Detail

Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 10641
Build 11045: arc lint + arc unit

Event Timeline

Changelog:
Pre-fix warnings located at: https://gist.github.com/aprieger-llnw/a952754f3c2a06a5cdbb7137d7612e77

  1. contrib/gdb/gdb/arch-utils.c
    • warning: warning: passing 'bfd_byte *' (aka 'unsigned char *') to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
      • fix: added the (char*) explicit modifier on lines 58 and 60
  2. contrib/gdb/gdb/ax-gdb.c
    • warning: warning: 20 enumeration values not handled in switch: 'TYPE_CODE_UNDEF', 'TYPE_CODE_PTR', 'TYPE_CODE_INT'... [-Wswitch]
      • fix: added a default case that does nothing to handle the unhandled cases on line 746
  3. contrib/gdb/gdb/breakpoint.c
    • warning: warning: equality comparison with extraneous parentheses [-Wparentheses-equality]
      • fix: removed the extra parentheses on lines 2650 and 2662
    • warning: warning: expression result unused [-Wunused-value]
      • fix: removed the unused variable expression on line 5546

In-tree GDB is now disabled (rS368441) and being removed soon