diff options
Diffstat (limited to 'compiler-rt/test/profile/Linux/coverage_dtor.cpp')
-rw-r--r-- | compiler-rt/test/profile/Linux/coverage_dtor.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler-rt/test/profile/Linux/coverage_dtor.cpp b/compiler-rt/test/profile/Linux/coverage_dtor.cpp index b24bfb8a4a4..8a4a039bee2 100644 --- a/compiler-rt/test/profile/Linux/coverage_dtor.cpp +++ b/compiler-rt/test/profile/Linux/coverage_dtor.cpp @@ -10,10 +10,9 @@ struct Base { }; struct Derived : public Base { - Derived(int K) : Base(K), I(K), J(K) {} - ~Derived() = default; // CHECK: 2| [[@LINE]]| ~Derived + Derived(int K) : Base(K), I(K) {} + ~Derived() = default; // CHECK: 2| [[@LINE]]| ~Derived() = default; int I; - int J; int getI() { return I; } }; |