summaryrefslogtreecommitdiff
path: root/llvm/lib/DWARFLinker/Parallel/StringEntryToDwarfStringPoolEntryMap.h
AgeCommit message (Collapse)Author
2025-11-02[llvm] Use "= default" (NFC) (#166088)Kazu Hirata
Identified with modernize-use-equals-default.
2024-03-19[dsymutil] Remove support for obfuscated bitcode (#85713)Jonas Devlieghere
Remove support for obfuscated bitcode in dsymutil and the DWARF linker. We no longer support bitcode submissions and the obfuscation support has been removed from the rest of the compiler. rdar://123863918
2024-03-19Revert "[dsymutil] Remove support for obfuscated bitcode" (#85826)Andres Villegas
Reverts llvm/llvm-project#85713 Since it is breaking Linux x64 builds.
2024-03-19[dsymutil] Remove support for obfuscated bitcode (#85713)Jonas Devlieghere
Remove support for obfuscated bitcode in dsymutil and the DWARF linker. We no longer support bitcode submissions and the obfuscation support has been removed from the rest of the compiler. rdar://123863918
2024-01-09[DWARFLinker][DWARFLinkerParallel][NFC] Refactor ↵avl-llvm
DWARFLinker&DWARFLinkerParallel to have a common library. Part 1. (#75925) This patch creates DWARFLinkerBase library, places DWARFLinker code into DWARFLinker\Classic, places DWARFLinkerParallel into DWARFLinker\Parallel. updates BOLT to use new library. This patch is NFC.