2004-01-23 David Carlton <carlton@kealia.com>
authorDavid Carlton <carlton@bactrian.org>
Fri, 23 Jan 2004 21:55:57 +0000 (21:55 +0000)
committerDavid Carlton <carlton@bactrian.org>
Fri, 23 Jan 2004 21:55:57 +0000 (21:55 +0000)
* gdb.cp/namespace.cc (C::ensureRefs): New.
* gdb.cp/namespace1.cc (C::ensureOtherRefs): New.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.cp/namespace.cc
gdb/testsuite/gdb.cp/namespace1.cc

index 150107333158d12045696f7f7032cfff59600f28..90e1ab72c15899a3f2396fb0b729c9b87769fe65 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-23  David Carlton  <carlton@kealia.com>
+
+       * gdb.cp/namespace.cc (C::ensureRefs): New.
+       * gdb.cp/namespace1.cc (C::ensureOtherRefs): New.
+
 2004-01-20  Nick Roberts  <nick@nick.uklinux.net>
 
        * gdb.mi/mi-stack.exp (test_stack_locals_listing): Test for
index 6a6837392061626ed2da4b7d4cfec7533e10fb50..ee55168528b06b061d6064b97b92f110d3ef2a10 100644 (file)
@@ -97,6 +97,13 @@ namespace C
     };
   };
 
+  void ensureRefs () {
+    // NOTE (2004-04-23, carlton): This function is here only to make
+    // sure that GCC 3.4 outputs debug info for these classes.
+    static CClass *c = new CClass();
+    static CClass::NestedClass *n = new CClass::NestedClass();
+  }
+
   namespace
   {
     int cX = 6;
index 5d668106511181383669aeae4e9222c8dc4b64ea..53b3e57c81c72a9068d9af382e4bbd339748a9c1 100644 (file)
@@ -24,6 +24,12 @@ namespace C
     int z;
   };
 
+  void ensureOtherRefs () {
+    // NOTE (2004-04-23, carlton): This function is here only to make
+    // sure that GCC 3.4 outputs debug info for this class.
+    static OtherFileClass *c = new OtherFileClass();
+  }
+
   namespace {
     int cXOtherFile = 29;
   };