|
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 |
| - |
6 | 3 | // RUN: %clang -### -target i386 -fexcess-precision=standard -c %s 2>&1 \
|
7 | 4 | // 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 |
| - |
11 | 5 | // RUN: %clang -### -target i386 -fexcess-precision=16 -c %s 2>&1 \
|
12 | 6 | // 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 |
| - |
16 | 7 | // RUN: %clang -### -target i386 -fexcess-precision=none -c %s 2>&1 \
|
17 | 8 | // 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 |
20 | 9 |
|
21 | 10 | // RUN: %clang -### -target x86_64 -fexcess-precision=fast -c %s 2>&1 \
|
22 | 11 | // 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 |
| - |
26 | 12 | // RUN: %clang -### -target x86_64 -fexcess-precision=standard -c %s 2>&1 \
|
27 | 13 | // 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 |
| - |
31 | 14 | // RUN: %clang -### -target x86_64 -fexcess-precision=16 -c %s 2>&1 \
|
32 | 15 | // 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 |
| - |
36 | 16 | // RUN: %clang -### -target x86_64 -fexcess-precision=none -c %s 2>&1 \
|
37 | 17 | // 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 |
40 | 18 |
|
41 | 19 | // RUN: %clang -### -target aarch64 -fexcess-precision=fast -c %s 2>&1 \
|
42 | 20 | // 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 |
| - |
46 | 21 | // RUN: %clang -### -target aarch64 -fexcess-precision=standard -c %s 2>&1 \
|
47 | 22 | // 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 |
| - |
51 | 23 | // RUN: %clang -### -target aarch64 -fexcess-precision=16 -c %s 2>&1 \
|
52 | 24 | // 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 |
| - |
56 | 25 | // RUN: %clang -### -target aarch64 -fexcess-precision=none -c %s 2>&1 \
|
57 | 26 | // 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 |
60 | 27 |
|
61 | 28 | // CHECK-FAST: "-ffloat16-excess-precision=fast"
|
62 | 29 | // CHECK-STD: "-ffloat16-excess-precision=standard"
|
|
0 commit comments