diff options
Diffstat (limited to 'test/profile/Linux/coverage_dtor.cpp')
-rw-r--r-- | test/profile/Linux/coverage_dtor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/profile/Linux/coverage_dtor.cpp b/test/profile/Linux/coverage_dtor.cpp index f35eb100fa12c..16415122040c9 100644 --- a/test/profile/Linux/coverage_dtor.cpp +++ b/test/profile/Linux/coverage_dtor.cpp @@ -12,7 +12,7 @@ struct Base { struct Derived : public Base { Derived(int K) : Base(K) {} - ~Derived() = default; // CHECK: 2| [[@LINE]]| ~Derived() = default; + ~Derived() = default; // CHECK: [[@LINE]]| 2| ~Derived() = default; }; int main() { @@ -21,6 +21,6 @@ int main() { Derived dd2(90); } if (g != 0) - return 1; // CHECK: 0| [[@LINE]]| return 1; + return 1; // CHECK: [[@LINE]]| 0| return 1; return 0; } |