blob: bfa535634d1efca0e21b242cd273f450055328bf [file] [log] [blame]
Xinliang David Li6962659a2016-02-07 07:13:18 +00001// RUN: %clang_cc1 -x c++ -std=c++11 %s -triple x86_64-unknown-linux-gnu -main-file-name def-dtors.cpp -o - -emit-llvm -fprofile-instrument=clang | FileCheck --check-prefix=PGOGEN %s
Xinliang David Li4e1aa2d2016-02-07 06:57:29 +00002
Xinliang David Li6962659a2016-02-07 07:13:18 +00003// RUN: %clang_cc1 -x c++ -std=c++11 %s -triple x86_64-unknown-linux-gnu -main-file-name def-dtors.cpp -o - -emit-llvm -fprofile-instrument=clang -fcoverage-mapping | FileCheck --check-prefix=COVMAP %s
Xinliang David Li4e1aa2d2016-02-07 06:57:29 +00004
5struct Base {
6 int B;
7 Base(int B_) : B(B_) {}
8 ~Base() {}
9};
10
11struct Derived : public Base {
Xinliang David Li64581392016-02-08 19:14:14 +000012 Derived(int K) : Base(K) {}
Xinliang David Li4e1aa2d2016-02-07 06:57:29 +000013 ~Derived() = default;
14 // PGOGEN-LABEL: define {{.*}}@_ZN7DerivedD2Ev
15 // PGOGEN: %pgocount = load {{.*}} @__profc__ZN7DerivedD2Ev
16 // PGOGEN: {{.*}}add{{.*}}%pgocount, 1
17 // PGOGEN: store{{.*}}@__profc__ZN7DerivedD2Ev
18
19 // Check that coverage mapping has 6 function records including
20 // the default destructor in the derived class.
Xinliang David Li64581392016-02-08 19:14:14 +000021 // COVMAP: @__llvm_coverage_mapping = {{.*}} { { i32, i32, i32, i32 }, [5 x
Xinliang David Li4e1aa2d2016-02-07 06:57:29 +000022 // <{{.*}}>],
Xinliang David Li4e1aa2d2016-02-07 06:57:29 +000023};
24
Xinliang David Li4e1aa2d2016-02-07 06:57:29 +000025int main() {
Xinliang David Li64581392016-02-08 19:14:14 +000026 Derived dd2(10);
27 if (dd2.B != 10)
28 return 1;
Xinliang David Li4e1aa2d2016-02-07 06:57:29 +000029 return 0;
30}