diff options
| author | Reid Kleckner <reid@kleckner.net> | 2015-07-08 18:27:10 +0000 |
|---|---|---|
| committer | Reid Kleckner <reid@kleckner.net> | 2015-07-08 18:27:10 +0000 |
| commit | 338635389ffed7db4c89b3076280673f71d5d5ae (patch) | |
| tree | 08fde912ccc9bd2cbccc8625a0d57183a44fdc2b /clang/test | |
| parent | f82b4fa9c7f4a0dbe970d55ff5c7fa4090019daa (diff) | |
| download | bcm5719-llvm-338635389ffed7db4c89b3076280673f71d5d5ae.tar.gz bcm5719-llvm-338635389ffed7db4c89b3076280673f71d5d5ae.zip | |
[SEH] Re-enable SEH on x86 Windows after r241699
llvm-svn: 241704
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/CodeGen/exceptions-seh-finally.c | 3 | ||||
| -rw-r--r-- | clang/test/CodeGen/exceptions-seh.c | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/clang/test/CodeGen/exceptions-seh-finally.c b/clang/test/CodeGen/exceptions-seh-finally.c index 513a1f3c89a..772e28306b5 100644 --- a/clang/test/CodeGen/exceptions-seh-finally.c +++ b/clang/test/CodeGen/exceptions-seh-finally.c @@ -1,6 +1,5 @@ // RUN: %clang_cc1 %s -triple x86_64-pc-win32 -fms-extensions -emit-llvm -o - | FileCheck %s -// FIXME: Re-enable 32-bit SEH. -// RUNX: %clang_cc1 %s -triple i686-pc-win32 -fms-extensions -emit-llvm -o - | FileCheck %s +// RUN: %clang_cc1 %s -triple i686-pc-win32 -fms-extensions -emit-llvm -o - | FileCheck %s void abort(void) __attribute__((noreturn)); void might_crash(void); diff --git a/clang/test/CodeGen/exceptions-seh.c b/clang/test/CodeGen/exceptions-seh.c index 702125b07a6..9707a9a31be 100644 --- a/clang/test/CodeGen/exceptions-seh.c +++ b/clang/test/CodeGen/exceptions-seh.c @@ -1,8 +1,7 @@ // RUN: %clang_cc1 %s -triple x86_64-pc-win32 -fms-extensions -emit-llvm -o - \ // RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=X64 -// FIXME: Re-enable 32-bit SEH. -// RUNX: %clang_cc1 %s -triple i686-pc-win32 -fms-extensions -emit-llvm -o - \ -// RUNX: | FileCheck %s --check-prefix=CHECK --check-prefix=X86 +// RUN: %clang_cc1 %s -triple i686-pc-win32 -fms-extensions -emit-llvm -o - \ +// RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=X86 void try_body(int numerator, int denominator, int *myres) { *myres = numerator / denominator; |

