Skip to content

Commit 021a2bc

Browse files
author
git apple-llvm automerger
committed
Merge commit '250705a63598' from apple/stable/20190619 into swift/master
2 parents e9b2815 + 250705a commit 021a2bc

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

apple-llvm-config/pr.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "github",
3+
"domain": "github.com",
4+
"user": "apple",
5+
"repo": "llvm-project",
6+
"test": {
7+
"type":"swift-ci"
8+
}
9+
}

llvm/tools/dsymutil/DwarfLinker.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -359,11 +359,12 @@ static bool dieNeedsChildrenToBeMeaningful(uint32_t Tag) {
359359
switch (Tag) {
360360
default:
361361
return false;
362-
case dwarf::DW_TAG_subprogram:
362+
case dwarf::DW_TAG_class_type:
363+
case dwarf::DW_TAG_common_block:
363364
case dwarf::DW_TAG_lexical_block:
364-
case dwarf::DW_TAG_subroutine_type:
365365
case dwarf::DW_TAG_structure_type:
366-
case dwarf::DW_TAG_class_type:
366+
case dwarf::DW_TAG_subprogram:
367+
case dwarf::DW_TAG_subroutine_type:
367368
case dwarf::DW_TAG_union_type:
368369
return true;
369370
}

0 commit comments

Comments
 (0)