mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Remove tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150022 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -974,22 +974,22 @@ void DebugInfoFinder::processModule(Module &M) {
|
||||
DICompileUnit CU(CU_Nodes->getOperand(i));
|
||||
addCompileUnit(CU);
|
||||
if (CU.getVersion() > LLVMDebugVersion10) {
|
||||
DIArray GVs = CU.getGlobalVariables();
|
||||
for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
|
||||
DIGlobalVariable DIG(GVs.getElement(i));
|
||||
if (addGlobalVariable(DIG))
|
||||
processType(DIG.getType());
|
||||
}
|
||||
DIArray SPs = CU.getSubprograms();
|
||||
for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
|
||||
processSubprogram(DISubprogram(SPs.getElement(i)));
|
||||
DIArray EnumTypes = CU.getEnumTypes();
|
||||
for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
|
||||
processType(DIType(EnumTypes.getElement(i)));
|
||||
DIArray RetainedTypes = CU.getRetainedTypes();
|
||||
for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
|
||||
processType(DIType(RetainedTypes.getElement(i)));
|
||||
return;
|
||||
DIArray GVs = CU.getGlobalVariables();
|
||||
for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
|
||||
DIGlobalVariable DIG(GVs.getElement(i));
|
||||
if (addGlobalVariable(DIG))
|
||||
processType(DIG.getType());
|
||||
}
|
||||
DIArray SPs = CU.getSubprograms();
|
||||
for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
|
||||
processSubprogram(DISubprogram(SPs.getElement(i)));
|
||||
DIArray EnumTypes = CU.getEnumTypes();
|
||||
for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
|
||||
processType(DIType(EnumTypes.getElement(i)));
|
||||
DIArray RetainedTypes = CU.getRetainedTypes();
|
||||
for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
|
||||
processType(DIType(RetainedTypes.getElement(i)));
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user