ahatanak added inline comments.

================
Comment at: clang/lib/CodeGen/CGBlocks.cpp:2142
+    if (capture.isConstantOrTrivial())
+      continue;
+
----------------
rjmccall wrote:
> Should this condition be specific to whether it's trivial *to destroy*?  C++ 
> types could be trivial to destroy but not to copy (and, theoretically, 
> vice-versa).
Adding the check here won't change anything since `pushCaptureCleanup` is a 
no-op if the type is trivial to destroy. But we can replace `NeedsCopyDispose` 
with `NeedsCopy` and `NeedsDispose` so that we can track whether copy and 
dispose helpers are needed separately and avoid emitting empty dispose helper 
functions.

I'm not sure whether we should do that in this patch or in another patch.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D116948

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

Reply via email to