Page MenuHomeFreeBSD

lib/clang/lldb build warning fixes
AbandonedPublic

Authored by aprieger_llnw.com on Jul 24 2017, 10:10 PM.
Tags
None
Referenced Files
Unknown Object (File)
Apr 30 2025, 4:20 AM
Unknown Object (File)
Apr 20 2025, 10:38 PM
Unknown Object (File)
Apr 19 2025, 9:31 PM
Unknown Object (File)
Apr 17 2025, 11:57 PM
Unknown Object (File)
Apr 14 2025, 6:00 AM
Unknown Object (File)
Mar 3 2025, 7:11 PM
Unknown Object (File)
Dec 22 2024, 7:14 PM
Unknown Object (File)
Dec 22 2024, 7:14 PM
Subscribers

Details

Reviewers
kbowling
sbruno
Summary

Code changes to fix the warnings during buildtime for the application in the lib/clang/lldb folder

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

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

  1. contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
    • warning: warning: format specifies type 'unsigned long' but the argument has type 'rep' (aka 'long long') [-Wformat]
      • fix: added the explicit modifiers (unsigned long) to the parameters on lines 2198, 2199 and 2256

These should be posted upstream at https://reviews.llvm.org/ See https://llvm.org/docs/Phabricator.html for notes on submission - in particular, note the requirement to CC the mailing list with the initial review creation, and include context with the diff.

(FWIW the latter also applies to FreeBSD; please include the context for future FreeBSD reviews as well. More details are at https://wiki.freebsd.org/Phabricator)

Thank you, I will post the change upstream