* g++.dg/opt/cleanup1.C (C::C()): Initialize member c.
Clarify comment.
From-SVN: r52588
+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.
// 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" }
return z;
}
-C::C ()
+C::C () : c (__null)
{
}