Test update : tighten up checks

llvm-svn: 260050
diff --git a/compiler-rt/test/profile/Linux/coverage_dtor.cpp b/compiler-rt/test/profile/Linux/coverage_dtor.cpp
index b24bfb8..8a4a039 100644
--- a/compiler-rt/test/profile/Linux/coverage_dtor.cpp
+++ b/compiler-rt/test/profile/Linux/coverage_dtor.cpp
@@ -10,10 +10,9 @@
 };
 
 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; }
 };