brintos

brintos / llvm-project-archived public Read only

0
0
Text · 532 B · 122513f Raw
9 lines · c
1// RUN: %clang -target armv7-apple-ios -fexceptions -c %s -o /dev/null -### 2>&1 | FileCheck -check-prefix CHECK-IOS %s2// RUN: %clang --target=i686-windows-gnu -fexceptions -c %s -o /dev/null -### 2>&1 | FileCheck --check-prefix=CHECK-MINGW-DEFAULT %s3// RUN: %clang --target=i686-windows-gnu -fexceptions -fsjlj-exceptions -c %s -o /dev/null -### 2>&1 | FileCheck --check-prefix=CHECK-MINGW-SJLJ %s4 5// CHECK-IOS: -exception-model=sjlj6// CHECK-MINGW-DEFAULT-NOT: -exception-model=sjlj7// CHECK-MINGW-SJLJ: -exception-model=sjlj8 9