Skip to content

Commit f9ce177

Browse files
committed
Switch i686 exception handling back to dwarf
The code generation bug in llvm has been fixed now.
1 parent 1759d79 commit f9ce177

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

wrappers/clang-target-wrapper.c

+1-5
Original file line numberDiff line numberDiff line change
@@ -283,11 +283,7 @@ int _tmain(int argc, TCHAR* argv[]) {
283283
exec_argv[arg++] = _T("--driver-mode=g++");
284284

285285
if (!_tcscmp(arch, _T("i686"))) {
286-
// Dwarf is the default for i686, but there are a few issues with
287-
// dwarf unwinding in code generated for i686, see
288-
// https://bugs.llvm.org/show_bug.cgi?id=40012 and
289-
// https://bugs.llvm.org/show_bug.cgi?id=40322.
290-
exec_argv[arg++] = _T("-fsjlj-exceptions");
286+
// Dwarf is the default for i686.
291287
} else if (!_tcscmp(arch, _T("x86_64"))) {
292288
// SEH is the default here.
293289
} else if (!_tcscmp(arch, _T("armv7"))) {

wrappers/clang-target-wrapper.sh

+1-5
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,7 @@ clang++|g++|c++)
3737
esac
3838
case $ARCH in
3939
i686)
40-
# Dwarf is the default for i686, but there are a few issues with
41-
# dwarf unwinding in code generated for i686, see
42-
# https://bugs.llvm.org/show_bug.cgi?id=40012 and
43-
# https://bugs.llvm.org/show_bug.cgi?id=40322.
44-
FLAGS="$FLAGS -fsjlj-exceptions"
40+
# Dwarf is the default for i686.
4541
;;
4642
x86_64)
4743
# SEH is the default here.

0 commit comments

Comments
 (0)