Skip to content

Commit 5ecaf6c

Browse files
committed
wrappers: Update the comment about what unwind method is used on armv7
Since fcb784db496137fa29a11b7e106efe89c7550e11 in llvm-project (Jun 6th), the armv7 target uses SEH.
1 parent 6b9e0b1 commit 5ecaf6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

wrappers/clang-target-wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ int _tmain(int argc, TCHAR* argv[]) {
7171
} else if (!_tcscmp(arch, _T("x86_64"))) {
7272
// SEH is the default for x86_64.
7373
} else if (!_tcscmp(arch, _T("armv7"))) {
74-
// Dwarf is the default for armv7.
74+
// SEH is the default for armv7.
7575
} else if (!_tcscmp(arch, _T("aarch64"))) {
7676
// SEH is the default for aarch64.
7777
}

wrappers/clang-target-wrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ x86_64)
6565
# SEH is the default for x86_64.
6666
;;
6767
armv7)
68-
# Dwarf is the default for armv7.
68+
# SEH is the default for armv7.
6969
;;
7070
aarch64)
7171
# SEH is the default for aarch64.

0 commit comments

Comments
 (0)