]> git.ipfire.org Git - people/ms/gcc.git/commitdiff
re PR testsuite/30649 ([4.1.x] possible bogus checkin of g++.dg/debug/debug9.C)
authorMark Mitchell <mark@codesourcery.com>
Sun, 11 Feb 2007 20:33:36 +0000 (20:33 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sun, 11 Feb 2007 20:33:36 +0000 (20:33 +0000)
PR gcc/30649
* g++.dg/debug/debug9.C: Remove

From-SVN: r121823

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/debug/debug9.C [deleted file]

index 19da28d9911f4ca8f070e53b3c938ce703135db0..0311feafb51755c074a783d5292ae2badae7478d 100644 (file)
@@ -1,3 +1,8 @@
+2007-02-11  Mark Mitchell  <mark@codesourcery.com>
+
+       PR gcc/30649
+       * g++.dg/debug/debug9.C: Remove.
+
 2007-02-10  Bernhard Fischer  <aldot@gcc.gnu.org>
 
        Backport from trunk:
diff --git a/gcc/testsuite/g++.dg/debug/debug9.C b/gcc/testsuite/g++.dg/debug/debug9.C
deleted file mode 100644 (file)
index aa328ee..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/* { dg-do assemble } */
-/* This testcase requires entries in the debug_range section in DWARF which
-   refer to a vague linkage function.  */
-
-struct s
-{
-  ~s ();
-};
-
-bool f1 ();
-s f2 (s);
-
-template<int x> void
-f3(const s & a)
-{
-  while (f1 () && f1 ())
-    {
-      s c = f2(a);
-    }
-}
-
-int main()
-{
-   f3<0>(s ());
-   return 0;
-}