mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 03:24:09 +00:00
Debug Info: improve the verifier to check field types.
Make sure the context field of DIType is MDNode. Fix testing cases to make them pass the verifier. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187150 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -420,6 +420,10 @@ static bool fieldIsMDNode(const MDNode *DbgNode, unsigned Elt) {
|
||||
bool DIType::Verify() const {
|
||||
if (!isType())
|
||||
return false;
|
||||
// Make sure Context @ field 2 is MDNode.
|
||||
if (!fieldIsMDNode(DbgNode, 2))
|
||||
return false;
|
||||
|
||||
// FIXME: Sink this into the various subclass verifies.
|
||||
unsigned Tag = getTag();
|
||||
if (!isBasicType() && Tag != dwarf::DW_TAG_const_type &&
|
||||
|
Reference in New Issue
Block a user