mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-20 10:24:12 +00:00
DebugInfo: Drop rest of DIDescriptor subclasses
Delete the remaining subclasses of (the already deleted) `DIDescriptor`. Part of PR23080. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235404 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -90,7 +90,7 @@ void ModuleDebugInfoPrinter::print(raw_ostream &O, const Module *M) const {
|
||||
O << '\n';
|
||||
}
|
||||
|
||||
for (DIGlobalVariable GV : Finder.global_variables()) {
|
||||
for (const MDGlobalVariable *GV : Finder.global_variables()) {
|
||||
O << "Global variable: " << GV->getName();
|
||||
printFile(O, GV->getFilename(), GV->getDirectory(), GV->getLine());
|
||||
if (!GV->getLinkageName().empty())
|
||||
|
Reference in New Issue
Block a user