kda added inline comments.

================
Comment at: clang/lib/CodeGen/CGClass.cpp:1872
 
       // Ignore trivial destructors.
+      if (BaseClassDecl->hasTrivialDestructor()) {
----------------
Maybe not "Ignore"?


================
Comment at: clang/lib/CodeGen/CGClass.cpp:1907
 
     // Ignore trivial destructors.
+    if (BaseClassDecl->hasTrivialDestructor()) {
----------------
not "ignore".


================
Comment at: compiler-rt/test/msan/dtor-base-access.cpp:11
 class Base {
  public:
+   int b;
----------------
nit: inconsistent indent with line 18.


================
Comment at: compiler-rt/test/msan/dtor-base-access.cpp:36
 
+Derived *g;
+
----------------
maybe in good faith '= nullptr'?


================
Comment at: compiler-rt/test/msan/dtor-base-access.cpp:63
+
+  g->~Derived();
+  // not ok to access everything
----------------
Is calling destructor preferred to 'delete g'?  Seems like 'delete' would be 
obvious inversion of 'new' on line 56.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D119300/new/

https://reviews.llvm.org/D119300

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to