[PATCH] D80242: [Clang] implement -fno-eliminate-unused-debug-types
Nick Desaulniers via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue May 19 16:34:44 PDT 2020
nickdesaulniers added a comment.
For C++, I'd imagine:
class foo {};
using my_foo = foo;
template <typename bar>
struct baz {
bar my_bar;
};
but it seems that `g++` doesn't emit debug info the for the templated struct.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80242/new/
https://reviews.llvm.org/D80242
More information about the cfe-commits
mailing list