1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

[DWARF] DW_TAG_imported_unit is not a unit type.

As pointed out by David in D38453 and confirmed with the DWARF mailing
list, DW_TAG_imported_unit is not a valid unit type.

llvm-svn: 315244
This commit is contained in:
Jonas Devlieghere 2017-10-09 22:33:53 +00:00
parent a55e7b5513
commit 67b84bcdf0

View File

@ -345,7 +345,6 @@ inline bool isUnitType(dwarf::Tag T) {
case DW_TAG_type_unit:
case DW_TAG_partial_unit:
case DW_TAG_skeleton_unit:
case DW_TAG_imported_unit:
return true;
default:
return false;