Skip to content

Commit

Permalink
wrappers: Unify comments about exception handling methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstorsjo committed May 28, 2019
1 parent 4811c1f commit 7edc154
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions wrappers/clang-target-wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,11 @@ int _tmain(int argc, TCHAR* argv[]) {
if (!_tcscmp(arch, _T("i686"))) {
// Dwarf is the default for i686.
} else if (!_tcscmp(arch, _T("x86_64"))) {
// SEH is the default here.
// SEH is the default for x86_64.
} else if (!_tcscmp(arch, _T("armv7"))) {
// Dwarf is the default here.
// Dwarf is the default for armv7.
} else if (!_tcscmp(arch, _T("aarch64"))) {
// SEH is the default here.
// SEH is the default for aarch64.
}

if (target_os && !_tcscmp(target_os, _T("mingw32uwp"))) {
Expand Down
6 changes: 3 additions & 3 deletions wrappers/clang-target-wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ i686)
# Dwarf is the default for i686.
;;
x86_64)
# SEH is the default here.
# SEH is the default for x86_64.
;;
armv7)
# Dwarf is the default here.
# Dwarf is the default for armv7.
;;
aarch64)
# SEH is the default here.
# SEH is the default for aarch64.
;;
esac
case $TARGET_OS in
Expand Down

0 comments on commit 7edc154

Please sign in to comment.