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-finally.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-finally.c')
-rw-r--r-- | clang/test/CodeGen/exceptions-seh-finally.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/CodeGen/exceptions-seh-finally.c b/clang/test/CodeGen/exceptions-seh-finally.c index 772e28306b5..513a1f3c89a 100644 --- a/clang/test/CodeGen/exceptions-seh-finally.c +++ b/clang/test/CodeGen/exceptions-seh-finally.c @@ -1,5 +1,6 @@ // RUN: %clang_cc1 %s -triple x86_64-pc-win32 -fms-extensions -emit-llvm -o - | FileCheck %s -// RUN: %clang_cc1 %s -triple i686-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 void abort(void) __attribute__((noreturn)); void might_crash(void); |