[PATCH] D29459: [asan] Move `DescribeSignalOrException` to sanitizer common.
Kuba (Brecka) Mracek via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 2 09:32:43 PST 2017
kubamracek added inline comments.
================
Comment at: lib/asan/asan_errors.cc:64
Printf("%s", d.Warning());
- const char *description = DescribeSignalOrException(signo);
+ const char *description = __sanitizer::DescribeSignalOrException(signo);
Report(
----------------
Why do we need `__sanitizer::`? Other parts of ASan call sanitizer_common code all the time without this.
https://reviews.llvm.org/D29459
More information about the llvm-commits
mailing list