summaryrefslogtreecommitdiff
path: root/test/CodeGen/exceptions-seh-finally.c
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2015-07-08 18:27:10 +0000
committerReid Kleckner <reid@kleckner.net>2015-07-08 18:27:10 +0000
commitebb999818ea5fa05299cb386c0b396b16b66232b (patch)
tree963cef177837e38ae21ee350996482ed08739eb9 /test/CodeGen/exceptions-seh-finally.c
parent0ec6ec05d5c7ca645eefe04123002c3a4b26a9ca (diff)
downloadclang-ebb999818ea5fa05299cb386c0b396b16b66232b.tar.gz
[SEH] Re-enable SEH on x86 Windows after r241699
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241704 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/exceptions-seh-finally.c')
-rw-r--r--test/CodeGen/exceptions-seh-finally.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGen/exceptions-seh-finally.c b/test/CodeGen/exceptions-seh-finally.c
index 513a1f3c89..772e28306b 100644
--- a/test/CodeGen/exceptions-seh-finally.c
+++ b/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);