[PATCH] D73990: [Sanitizers] Get link map on FreeBSD via documented API
Dimitry Andric via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 22:17:37 PST 2020
dim marked an inline comment as done.
dim added inline comments.
================
Comment at: compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cpp:96
+ void *__sanitizer_get_link_map_by_dlopen_handle(void* handle)
+ {
+ void *p = nullptr;
----------------
MaskRay wrote:
> vitalybuka wrote:
> > should be
> > ```
> > void *__sanitizer_get_link_map_by_dlopen_handle(void* handle) {
> > ```
> > clang-format it
> Should be
>
> `void *__sanitizer_get_link_map_by_dlopen_handle(void *handle) {`
Eh, what do you mean? It's already that form?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73990/new/
https://reviews.llvm.org/D73990
More information about the llvm-commits
mailing list