mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Add a fixme and reformat.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187012 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e389cc5f0c
commit
bf7644a27e
@ -437,18 +437,17 @@ bool DIObjCProperty::Verify() const {
|
||||
bool DIType::Verify() const {
|
||||
if (!isType())
|
||||
return false;
|
||||
// FIXME: Sink this into the various subclass verifies.
|
||||
unsigned Tag = getTag();
|
||||
if (!isBasicType() && Tag != dwarf::DW_TAG_const_type &&
|
||||
Tag != dwarf::DW_TAG_volatile_type && Tag != dwarf::DW_TAG_pointer_type &&
|
||||
Tag != dwarf::DW_TAG_ptr_to_member_type &&
|
||||
Tag != dwarf::DW_TAG_reference_type &&
|
||||
Tag != dwarf::DW_TAG_rvalue_reference_type &&
|
||||
Tag != dwarf::DW_TAG_restrict_type &&
|
||||
Tag != dwarf::DW_TAG_array_type &&
|
||||
Tag != dwarf::DW_TAG_restrict_type && Tag != dwarf::DW_TAG_array_type &&
|
||||
Tag != dwarf::DW_TAG_enumeration_type &&
|
||||
Tag != dwarf::DW_TAG_subroutine_type &&
|
||||
Tag != dwarf::DW_TAG_inheritance &&
|
||||
Tag != dwarf::DW_TAG_friend &&
|
||||
Tag != dwarf::DW_TAG_inheritance && Tag != dwarf::DW_TAG_friend &&
|
||||
getFilename().empty())
|
||||
return false;
|
||||
// DIType is abstract, it should be a BasicType, a DerivedType or
|
||||
|
Loading…
Reference in New Issue
Block a user