PR gcc/30649
* g++.dg/debug/debug9.C: Remove
From-SVN: r121823
+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:
+++ /dev/null
-/* { 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;
-}