summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/SymbolFile/NativePDB/icf.cpp
AgeCommit message (Collapse)Author
2024-10-31[lldb] Set LLDB_USE_NATIVE_PDB_READER at the directory level (#114455)Jonas Devlieghere
Lit allows you to set environment variables for all tests in a directory using a `lit.local.cfg` file. Do this for the PDB and NativePDB tests.
2022-09-08[LLDB][NativePDB] Fix PdbAstBuilder::GetParentDeclContext when ICF happens.Zequan Wu
Removed `GetParentDeclContextForSymbol` as this is not necesssary. We can get the demangled names from CVSymbol and then using it to create tag decl or namespace decl. This also fixed a bug when icf applied. Differential Revision: https://reviews.llvm.org/D133243