[PATCH] D89808: [GWP-ASan] Rework utilities (NFC)
Mitch Phillips via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 20 10:35:55 PDT 2020
hctim added a comment.
(commenting to try and front my comments before your new patch)
================
Comment at: compiler-rt/lib/gwp_asan/utilities.h:21
+// Checks that `Condition` is true, otherwise dies with `Message`.
+inline void Check(bool Condition, const char *Message) {
+ if (Condition)
----------------
nit: prefer `GWP_ASAN_ALWAYS_INLINE`
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D89808/new/
https://reviews.llvm.org/D89808
More information about the llvm-commits
mailing list