1*67e74705SXin Li // RUN: %clang -target armv7-apple-ios -fexceptions -c %s -o /dev/null -### 2>&1 | FileCheck -check-prefix CHECK-IOS %s 2*67e74705SXin Li // RUN: %clang -target i686-windows-gnu -fexceptions -c %s -o /dev/null -### 2>&1 | FileCheck -check-prefix CHECK-MINGW-DEFAULT %s 3*67e74705SXin Li // RUN: %clang -target i686-windows-gnu -fexceptions -fsjlj-exceptions -c %s -o /dev/null -### 2>&1 | FileCheck -check-prefix CHECK-MINGW-SJLJ %s 4*67e74705SXin Li 5*67e74705SXin Li // CHECK-IOS: -fsjlj-exceptions 6*67e74705SXin Li // CHECK-MINGW-DEFAULT-NOT: -fsjlj-exceptions 7*67e74705SXin Li // CHECK-MINGW-SJLJ: -fsjlj-exceptions 8*67e74705SXin Li 9