1 /* Code to go along with tests in rtti.exp.
3 Copyright 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
5 Contributed by David Carlton <carlton@bactrian.org> and by Kealia,
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
35 class C1
: public Base1
{
47 D1::D1(C1
*expr_1
, C1
*expr_2
)
48 : expr_1_(expr_1
), expr_2_(expr_2
) { }
56 // NOTE: carlton/2004-01-23: This call exists only to convince GCC to
57 // keep around a reference to 'obj' in n2::func - GCC 3.4 had been
58 // optimizing it away.
59 void refer_to (n2::C2
*obj
)
64 void refer_to (n2::n3::C3
*obj
)
75 refer_to (obj
); // func-constructs-done
84 C3
*obj3
= create3 ();
86 refer_to (obj3
); // func3-constructs-done
101 n2::func(); // main-constructs-done