* loop.c (loop_optimize): Always find_loop_tree_blocks and
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / debug6.C
blob43f13b936b3a1741eb91fb0795318cbcf2cbdbcf
1 // Build don't link:
2 // Special g++ Options: -g -O2
4 //  Copyright (C) 1999 Free Software Foundation, Inc.
5 //  Contributed by Nathan Sidwell 21 Nov 1999 <nathan@acm.org>
7 // This causes assember relocation errors
9 struct X
11   virtual ~X () {}
14 struct Y
16   Y (){};
19 void foo ()
21   X *x = new X;
22   x->~X ();
23   Y ys[2];