Lines Matching full:exceptions
4 // DEFAULT: "-cc1" {{.*}} "-fcxx-exceptions" "-fexceptions"
7 // ON1: "-cc1" {{.*}} "-fcxx-exceptions" "-fexceptions"
9 // RUN: %clang -### -fno-exceptions -fcxx-exceptions %s 2>&1 | FileCheck %s -check-prefix=ON2
10 // ON2: "-cc1" {{.*}} "-fcxx-exceptions" "-fexceptions"
12 // RUN: %clang -### -fno-cxx-exceptions -fexceptions %s 2>&1 | FileCheck %s -check-prefix=ON3
13 // ON3: "-cc1" {{.*}} "-fcxx-exceptions" "-fexceptions"
15 // RUN: %clang -### -fno-exceptions %s 2>&1 | FileCheck %s -check-prefix=OFF1
16 // OFF1-NOT: "-cc1" {{.*}} "-fcxx-exceptions"
18 // RUN: %clang -### -fno-cxx-exceptions %s 2>&1 | FileCheck %s -check-prefix=OFF2
19 // OFF2-NOT: "-cc1" {{.*}} "-fcxx-exceptions"
21 // RUN: %clang -### -fcxx-exceptions -fno-exceptions %s 2>&1 | FileCheck %s -check-prefix=OFF3
22 // OFF3-NOT: "-cc1" {{.*}} "-fcxx-exceptions"
24 // RUN: %clang -### -fexceptions -fno-cxx-exceptions %s 2>&1 | FileCheck %s -check-prefix=OFF4
25 // OFF4-NOT: "-cc1" {{.*}} "-fcxx-exceptions"
28 // PS4-OFF-NOT: "-cc1" {{.*}} "-f{{(cxx-)?}}exceptions"