[PATCH] D72427: [DebugInfo] Add option to clang to limit debug info that is emitted for classes.
Orlando Cazalet-Hyams via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 13 07:35:04 PST 2020
Orlando added inline comments.
================
Comment at: clang/lib/CodeGen/CGDebugInfo.cpp:2225
+ !CXXDecl->isLambda() && !isClassOrMethodDLLImport(CXXDecl)) {
+ for (const auto *ctor : CXXDecl->ctors()) {
+ if (ctor->isUserProvided())
----------------
Nit: Should `ctor` be `Ctor` here?
I'm just passing by, please don't wait on any approval from me for this patch.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D72427/new/
https://reviews.llvm.org/D72427
More information about the cfe-commits
mailing list