1 // RUN: %clang -target i686-windows-msvc -c %s -### 2>&1 | FileCheck -check-prefix=MSVC %s
2 // RUN: %clang -target x86_64-windows-msvc -c %s -### 2>&1 | FileCheck -check-prefix=MSVC %s
3 // RUN: %clang -target i686-windows-gnu -c %s -### 2>&1 | FileCheck -check-prefix=MINGW-DWARF %s
4 // RUN: %clang -target x86_64-windows-gnu -c %s -### 2>&1 | FileCheck -check-prefix=MINGW-SEH %s
5 
6 MSVC-NOT: -fdwarf-exceptions
7 MSVC-NOT: -fseh-exceptions
8 MINGW-DWARF: -fdwarf-exceptions
9 MINGW-SEH: -fseh-exceptions
10