|
1 | 1 | // Test this without pch.
|
2 |
| -// RUN: %clang_cc1 %s -include %s -verify -fsyntax-only -DSET |
3 |
| -// RUN: %clang_cc1 %s -include %s -verify -fsyntax-only -DPUSH |
4 |
| -// RUN: %clang_cc1 %s -include %s -verify -fsyntax-only -DPUSH_POP |
| 2 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -include %s -verify -fsyntax-only -DSET |
| 3 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -include %s -verify -fsyntax-only -DPUSH |
| 4 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -include %s -verify -fsyntax-only -DPUSH_POP |
5 | 5 |
|
6 | 6 | // Test with pch.
|
7 |
| -// RUN: %clang_cc1 %s -DSET -emit-pch -o %t |
8 |
| -// RUN: %clang_cc1 %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
9 |
| -// RUN: %clang_cc1 %s -ffp-contract=on -DSET -emit-pch -o %t |
10 |
| -// RUN: %clang_cc1 %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
11 |
| -// RUN: %clang_cc1 %s -menable-no-nans -DSET -emit-pch -o %t |
12 |
| -// RUN: %clang_cc1 %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
13 |
| -// RUN: %clang_cc1 %s -frounding-math -DSET -emit-pch -o %t |
14 |
| -// RUN: %clang_cc1 %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
15 |
| -// RUN: %clang_cc1 %s -ffp-exception-behavior=maytrap -DSET -emit-pch -o %t |
16 |
| -// RUN: %clang_cc1 %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
17 |
| -// RUN: %clang_cc1 %s -ffp-contract=fast -DSET -emit-pch -o %t |
18 |
| -// RUN: %clang_cc1 %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
19 |
| -// RUN: %clang_cc1 %s -DSET -emit-pch -o %t |
20 |
| -// RUN: %clang_cc1 %s -ffp-contract=on -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-CONTRACT %s |
21 |
| -// RUN: %clang_cc1 %s -DPUSH -emit-pch -o %t |
22 |
| -// RUN: %clang_cc1 %s -DPUSH -verify -include-pch %t |
23 |
| -// RUN: %clang_cc1 %s -DPUSH_POP -emit-pch -o %t |
24 |
| -// RUN: %clang_cc1 %s -DPUSH_POP -verify -include-pch %t |
| 7 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DSET -emit-pch -o %t |
| 8 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
| 9 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -ffp-contract=on -DSET -emit-pch -o %t |
| 10 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
| 11 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -menable-no-nans -DSET -emit-pch -o %t |
| 12 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
| 13 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -frounding-math -DSET -emit-pch -o %t |
| 14 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
| 15 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -ffp-exception-behavior=maytrap -DSET -emit-pch -o %t |
| 16 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
| 17 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -ffp-contract=fast -DSET -emit-pch -o %t |
| 18 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-EBSTRICT %s |
| 19 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DSET -emit-pch -o %t |
| 20 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -ffp-contract=on -DSET -include-pch %t -emit-llvm -o - | FileCheck --check-prefix=CHECK-CONTRACT %s |
| 21 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DPUSH -emit-pch -o %t |
| 22 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DPUSH -verify -include-pch %t |
| 23 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DPUSH_POP -emit-pch -o %t |
| 24 | +// RUN: %clang_cc1 -fexperimental-strict-floating-point %s -DPUSH_POP -verify -include-pch %t |
25 | 25 |
|
26 | 26 | #ifndef HEADER
|
27 | 27 | #define HEADER
|
|
0 commit comments