|
1 | 1 | // RUN: %clang -### -target i386 -fexcess-precision=fast -c %s 2>&1 \
|
2 | 2 | // RUN: | FileCheck --check-prefix=CHECK-FAST %s
|
| 3 | +// RUN: %clang_cl -### -target i386 -fexcess-precision=fast -c %s 2>&1 \ |
| 4 | +// RUN: | FileCheck --check-prefix=CHECK-FAST %s |
| 5 | + |
3 | 6 | // RUN: %clang -### -target i386 -fexcess-precision=standard -c %s 2>&1 \
|
4 | 7 | // RUN: | FileCheck --check-prefix=CHECK-STD %s
|
| 8 | +// RUN: %clang_cl -### -target i386 -fexcess-precision=standard -c %s 2>&1 \ |
| 9 | +// RUN: | FileCheck --check-prefix=CHECK-STD %s |
| 10 | + |
5 | 11 | // RUN: %clang -### -target i386 -fexcess-precision=16 -c %s 2>&1 \
|
6 | 12 | // RUN: | FileCheck --check-prefix=CHECK-NONE %s
|
| 13 | +// RUN: %clang_cl -### -target i386 -fexcess-precision=16 -c %s 2>&1 \ |
| 14 | +// RUN: | FileCheck --check-prefix=CHECK-NONE %s |
| 15 | + |
7 | 16 | // RUN: %clang -### -target i386 -fexcess-precision=none -c %s 2>&1 \
|
8 | 17 | // RUN: | FileCheck --check-prefix=CHECK-ERR-NONE %s
|
| 18 | +// RUN: %clang_cl -### -target i386 -fexcess-precision=none -c %s 2>&1 \ |
| 19 | +// RUN: | FileCheck --check-prefix=CHECK-ERR-NONE %s |
9 | 20 |
|
10 | 21 | // RUN: %clang -### -target x86_64 -fexcess-precision=fast -c %s 2>&1 \
|
11 | 22 | // RUN: | FileCheck --check-prefix=CHECK-FAST %s
|
| 23 | +// RUN: %clang_cl -### -target x86_64 -fexcess-precision=fast -c %s 2>&1 \ |
| 24 | +// RUN: | FileCheck --check-prefix=CHECK-FAST %s |
| 25 | + |
12 | 26 | // RUN: %clang -### -target x86_64 -fexcess-precision=standard -c %s 2>&1 \
|
13 | 27 | // RUN: | FileCheck --check-prefix=CHECK-STD %s
|
| 28 | +// RUN: %clang_cl -### -target x86_64 -fexcess-precision=standard -c %s 2>&1 \ |
| 29 | +// RUN: | FileCheck --check-prefix=CHECK-STD %s |
| 30 | + |
14 | 31 | // RUN: %clang -### -target x86_64 -fexcess-precision=16 -c %s 2>&1 \
|
15 | 32 | // RUN: | FileCheck --check-prefix=CHECK-NONE %s
|
| 33 | +// RUN: %clang_cl -### -target x86_64 -fexcess-precision=16 -c %s 2>&1 \ |
| 34 | +// RUN: | FileCheck --check-prefix=CHECK-NONE %s |
| 35 | + |
16 | 36 | // RUN: %clang -### -target x86_64 -fexcess-precision=none -c %s 2>&1 \
|
17 | 37 | // RUN: | FileCheck --check-prefixes=CHECK-ERR-NONE %s
|
| 38 | +// RUN: %clang_cl -### -target x86_64 -fexcess-precision=none -c %s 2>&1 \ |
| 39 | +// RUN: | FileCheck --check-prefixes=CHECK-ERR-NONE %s |
18 | 40 |
|
19 | 41 | // RUN: %clang -### -target aarch64 -fexcess-precision=fast -c %s 2>&1 \
|
20 | 42 | // RUN: | FileCheck --check-prefix=CHECK %s
|
| 43 | +// RUN: %clang_cl -### -target aarch64 -fexcess-precision=fast -c %s 2>&1 \ |
| 44 | +// RUN: | FileCheck --check-prefix=CHECK %s |
| 45 | + |
21 | 46 | // RUN: %clang -### -target aarch64 -fexcess-precision=standard -c %s 2>&1 \
|
22 | 47 | // RUN: | FileCheck --check-prefix=CHECK %s
|
| 48 | +// RUN: %clang_cl -### -target aarch64 -fexcess-precision=standard -c %s 2>&1 \ |
| 49 | +// RUN: | FileCheck --check-prefix=CHECK %s |
| 50 | + |
23 | 51 | // RUN: %clang -### -target aarch64 -fexcess-precision=16 -c %s 2>&1 \
|
24 | 52 | // RUN: | FileCheck --check-prefix=CHECK-ERR-16 %s
|
| 53 | +// RUN: %clang_cl -### -target aarch64 -fexcess-precision=16 -c %s 2>&1 \ |
| 54 | +// RUN: | FileCheck --check-prefix=CHECK-ERR-16 %s |
| 55 | + |
25 | 56 | // RUN: %clang -### -target aarch64 -fexcess-precision=none -c %s 2>&1 \
|
26 | 57 | // RUN: | FileCheck --check-prefix=CHECK-ERR-NONE %s
|
| 58 | +// RUN: %clang_cl -### -target aarch64 -fexcess-precision=none -c %s 2>&1 \ |
| 59 | +// RUN: | FileCheck --check-prefix=CHECK-ERR-NONE %s |
27 | 60 |
|
28 | 61 | // CHECK-FAST: "-ffloat16-excess-precision=fast"
|
29 | 62 | // CHECK-STD: "-ffloat16-excess-precision=standard"
|
|
0 commit comments