cleanup1.C (C::C()): Initialize member c.
authorHans-Peter Nilsson <hp@axis.com>
Sun, 21 Apr 2002 20:32:48 +0000 (20:32 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Sun, 21 Apr 2002 20:32:48 +0000 (20:32 +0000)
* g++.dg/opt/cleanup1.C (C::C()): Initialize member c.
Clarify comment.

From-SVN: r52588

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/opt/cleanup1.C

index 8c5385f86681aa50930ef9cd353cc84d5d9a83c6..99ab61171f780cb9b523709b01982d4f506399c9 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-21  Hans-Peter Nilsson  <hp@axis.com>
+
+       * g++.dg/opt/cleanup1.C (C::C()): Initialize member c.
+       Clarify comment.
+
 2002-04-21  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * gcc.dg/cpp/endif.h, gcc.dg/cpp/endif.c: New tests.
index f34c7cf1a2d412a2b4e76bbd8cf234d7bc0f137a..e7c00dc2073795aa770ed840569587b2a12d017f 100644 (file)
@@ -1,6 +1,7 @@
 // PR middle-end/6247
 // This testcase was miscompiled on IA-32 because a single stack slot
 // was used for 2 different variables at the same time.
+// The function H::h1 was miscompiled.
 // { dg-do run }
 // { dg-options "-O2" }
 
@@ -130,7 +131,7 @@ C C::c1 (const char *x, int y)
   return z;
 }
 
-C::C ()
+C::C () : c (__null)
 {
 }