diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-07-08 23:57:03 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-07-08 23:57:03 +0000 |
commit | e7844ea7f86127a21686e2392da55ffa533d83dd (patch) | |
tree | cb6265c671b0e911acf64d14a01e94c5d0ddabaa /clang/test/CodeGen/exceptions-seh.c | |
parent | 13194461958672e09a4b0608186c7793a6aaf241 (diff) | |
download | bcm5719-llvm-e7844ea7f86127a21686e2392da55ffa533d83dd.tar.gz bcm5719-llvm-e7844ea7f86127a21686e2392da55ffa533d83dd.zip |
Disable 32-bit SEH, again
Move the diagnostic back to codegen so that we can compile ATL on the
self-host bot. We don't actually end up emitting code for the __try, so
the diagnostic won't be hit.
llvm-svn: 241761
Diffstat (limited to 'clang/test/CodeGen/exceptions-seh.c')
-rw-r--r-- | clang/test/CodeGen/exceptions-seh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/test/CodeGen/exceptions-seh.c b/clang/test/CodeGen/exceptions-seh.c index 9707a9a31be..702125b07a6 100644 --- a/clang/test/CodeGen/exceptions-seh.c +++ b/clang/test/CodeGen/exceptions-seh.c @@ -1,7 +1,8 @@ // RUN: %clang_cc1 %s -triple x86_64-pc-win32 -fms-extensions -emit-llvm -o - \ // RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=X64 -// RUN: %clang_cc1 %s -triple i686-pc-win32 -fms-extensions -emit-llvm -o - \ -// RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=X86 +// 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 void try_body(int numerator, int denominator, int *myres) { *myres = numerator / denominator; |