blob: 305c3684486d91f1acafb36102d9c6fd81298266 [file] [log] [blame]
Kevin P. Neald4ce8622020-07-10 08:46:09 -04001// RUN: %clang_cc1 -x c++ -ftrapping-math -fexceptions -fcxx-exceptions -frounding-math -ffp-exception-behavior=strict -fexperimental-strict-floating-point -emit-llvm -o - %s | FileCheck %s -check-prefix=FPMODELSTRICT
Melanie Blower7f9b5132019-12-04 12:23:46 -08002// RUN: %clang_cc1 -x c++ -ffp-contract=fast -fexceptions -fcxx-exceptions -emit-llvm -o - %s | FileCheck %s -check-prefix=PRECISE
3// RUN: %clang_cc1 -x c++ -ffast-math -fexceptions -fcxx-exceptions -ffp-contract=fast -emit-llvm -o - %s | FileCheck %s -check-prefix=FAST
Melanie Blowerf5360d42020-05-01 10:32:06 -07004// RUN: %clang_cc1 -x c++ -ffast-math -fexceptions -fcxx-exceptions -emit-llvm -o - %s | FileCheck %s -check-prefix=FASTNOCONTRACT
Melanie Blower7f9b5132019-12-04 12:23:46 -08005// RUN: %clang_cc1 -x c++ -ffast-math -fexceptions -fcxx-exceptions -ffp-contract=fast -ffp-exception-behavior=ignore -emit-llvm -o - %s | FileCheck %s -check-prefix=FAST
Kevin P. Neald4ce8622020-07-10 08:46:09 -04006// RUN: %clang_cc1 -x c++ -ffast-math -fexceptions -fcxx-exceptions -ffp-contract=fast -ffp-exception-behavior=strict -fexperimental-strict-floating-point -emit-llvm -o - %s | FileCheck %s -check-prefix=EXCEPT
7// RUN: %clang_cc1 -x c++ -ffast-math -fexceptions -fcxx-exceptions -ffp-contract=fast -ffp-exception-behavior=maytrap -fexperimental-strict-floating-point -emit-llvm -o - %s | FileCheck %s -check-prefix=MAYTRAP
8
Melanie Blower7f9b5132019-12-04 12:23:46 -08009float f0, f1, f2;
10
11 template <class>
12 class aaaa {
13 public:
14 ~aaaa();
15 void b();
16 };
17
18 template <class c>
19 aaaa<c>::~aaaa() { try {
20 b();
21 // CHECK-LABEL: define {{.*}}void @_ZN4aaaaIiED2Ev{{.*}}
22
23 } catch (...) {
Melanie Blowerf5360d42020-05-01 10:32:06 -070024 // MAYTRAP: llvm.experimental.constrained.fadd.f32(float %{{.*}}, float %{{.*}}, metadata !"round.tonearest", metadata !"fpexcept.maytrap")
25 // EXCEPT: llvm.experimental.constrained.fadd.f32(float %{{.*}}, float %{{.*}}, metadata !"round.tonearest", metadata !"fpexcept.strict")
26 // FPMODELSTRICT: llvm.experimental.constrained.fadd.f32(float %{{.*}}, float %{{.*}}, metadata !"round.dynamic", metadata !"fpexcept.strict")
27 // STRICTEXCEPT: llvm.experimental.constrained.fadd.f32(float %{{.*}}, float %{{.*}}, metadata !"round.dynamic", metadata !"fpexcept.strict")
28 // STRICTNOEXCEPT: llvm.experimental.constrained.fadd.f32(float %{{.*}}, float %{{.*}}, metadata !"round.dynamic", metadata !"fpexcept.ignore")
29 // PRECISE: fadd contract float %{{.*}}, %{{.*}}
30 // FAST: fadd fast
31 // FASTNOCONTRACT: fadd reassoc nnan ninf nsz arcp afn float
32 f0 = f1 + f2;
Melanie Blower7f9b5132019-12-04 12:23:46 -080033
Melanie Blowerf5360d42020-05-01 10:32:06 -070034 // CHECK: ret void
Melanie Blower7f9b5132019-12-04 12:23:46 -080035 }
36 }
37
38 class d {
39 public:
40 d(const char *, int);
41 aaaa<int> e;
42 };
43
44float foo() {
45 d x("", 1);
46 aaaa<int> a;
47 return f0;
48}
49