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)
Feb 20 2024, 4:21 AM
Unknown Object (File)
Dec 20 2023, 6:40 AM
Unknown Object (File)
Dec 11 2023, 12:43 PM
Unknown Object (File)
Dec 11 2023, 11:46 AM
Unknown Object (File)
Sep 20 2023, 8:12 PM
Unknown Object (File)
Jun 26 2023, 3:30 AM
Unknown Object (File)
May 6 2023, 9:25 AM
Unknown Object (File)
May 4 2023, 1:09 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