diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-07-10 00:16:25 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-07-10 00:16:25 +0000 |
commit | 8819a4065fba65a69b793db5228751845717d395 (patch) | |
tree | 80ed8eb46cc04de883951ed7e8b403d2404bd686 /clang/test/CodeGen/exceptions-seh.c | |
parent | 85a2450d566a80fe115b249504ffd1d5d0ee1144 (diff) | |
download | bcm5719-llvm-8819a4065fba65a69b793db5228751845717d395.tar.gz bcm5719-llvm-8819a4065fba65a69b793db5228751845717d395.zip |
Re-enable 32-bit SEH after the alignment fix
llvm-svn: 241878
Diffstat (limited to 'clang/test/CodeGen/exceptions-seh.c')
-rw-r--r-- | clang/test/CodeGen/exceptions-seh.c | 5 |
1 files changed, 2 insertions, 3 deletions
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; |