[PATCH] D71451: Support to emit extern variables debuginfo with "-fstandalone-debug"
Jaydeep Chauhan via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 27 05:17:29 PST 2020
Jac1494 marked an inline comment as done.
Jac1494 added inline comments.
================
Comment at: clang/lib/CodeGen/CGDebugInfo.cpp:4598
+ if (!(DebugKind == clang::codegenoptions::FullDebugInfo))
+ return;
----------------
aprantl wrote:
> nit:
>
> ```
> if (DebugKind < clang::codegenoptions::FullDebugInfo)
> return
>
> ```
@aprantl thanks for suggestion , change is updated.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D71451/new/
https://reviews.llvm.org/D71451
More information about the cfe-commits
mailing list