[PATCH] D120610: [DebugInfo] Include DW_TAG_skeleton_unit when looking for parent UnitDie
David Blaikie via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 10 09:42:22 PST 2022
dblaikie added a comment.
Fixes in LLVM require tests in LLVM - probably taking the clang test and compiling that to llvm IR (include the original C++ source in a comment in the IR test case) and then testing it in LLVM instead of clang.
Also looks like the test could be simplified a bit more:
void f1();
template <typename T>
void f2() {
f1();
}
void f3() {
f2<int>();
}
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120610/new/
https://reviews.llvm.org/D120610
More information about the cfe-commits
mailing list