[PATCH] D119300: Use-after-dtor detection for trivial base classes.
Kevin Athey via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 16 10:32:25 PDT 2022
kda accepted this revision.
kda added inline comments.
================
Comment at: compiler-rt/test/msan/dtor-base-access.cpp:24
+class TrivialBaseAfter {
+public:
+ int tb1;
----------------
nit: add single space (consistent indent).
================
Comment at: compiler-rt/test/msan/dtor-base-access.cpp:30
+class Derived : public TrivialBaseBefore, public Base, public TrivialBaseAfter {
+public:
+ int d;
----------------
nit: add single space (consistent indent).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119300/new/
https://reviews.llvm.org/D119300
More information about the cfe-commits
mailing list