mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 01:24:30 +00:00
Debug Info: revert r222195, r222210 and r222239.
This is no longer needed after David's fix at r222377 + r222485. rdar://18958417 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222563 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -567,8 +567,8 @@ bool DIGlobalVariable::Verify() const {
|
||||
|
||||
if (getDisplayName().empty())
|
||||
return false;
|
||||
// Make sure context @ field 1 is a ScopeRef.
|
||||
if (!fieldIsScopeRef(DbgNode, 1))
|
||||
// Make sure context @ field 1 is an MDNode.
|
||||
if (!fieldIsMDNode(DbgNode, 1))
|
||||
return false;
|
||||
// Make sure that type @ field 3 is a DITypeRef.
|
||||
if (!fieldIsTypeRef(DbgNode, 3))
|
||||
@ -1005,7 +1005,7 @@ void DebugInfoFinder::processModule(const Module &M) {
|
||||
for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
|
||||
DIGlobalVariable DIG(GVs.getElement(i));
|
||||
if (addGlobalVariable(DIG)) {
|
||||
processScope(DIG.getContext().resolve(TypeIdentifierMap));
|
||||
processScope(DIG.getContext());
|
||||
processType(DIG.getType().resolve(TypeIdentifierMap));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user