Skip to content

Commit 7edc154

Browse files
committed
wrappers: Unify comments about exception handling methods.
1 parent 4811c1f commit 7edc154

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

wrappers/clang-target-wrapper.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,11 @@ int _tmain(int argc, TCHAR* argv[]) {
175175
if (!_tcscmp(arch, _T("i686"))) {
176176
// Dwarf is the default for i686.
177177
} else if (!_tcscmp(arch, _T("x86_64"))) {
178-
// SEH is the default here.
178+
// SEH is the default for x86_64.
179179
} else if (!_tcscmp(arch, _T("armv7"))) {
180-
// Dwarf is the default here.
180+
// Dwarf is the default for armv7.
181181
} else if (!_tcscmp(arch, _T("aarch64"))) {
182-
// SEH is the default here.
182+
// SEH is the default for aarch64.
183183
}
184184

185185
if (target_os && !_tcscmp(target_os, _T("mingw32uwp"))) {

wrappers/clang-target-wrapper.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ i686)
4040
# Dwarf is the default for i686.
4141
;;
4242
x86_64)
43-
# SEH is the default here.
43+
# SEH is the default for x86_64.
4444
;;
4545
armv7)
46-
# Dwarf is the default here.
46+
# Dwarf is the default for armv7.
4747
;;
4848
aarch64)
49-
# SEH is the default here.
49+
# SEH is the default for aarch64.
5050
;;
5151
esac
5252
case $TARGET_OS in

0 commit comments

Comments
 (0)