OSDN Git Service

Copyright updates for 2007.
[pf3gnuchains/pf3gnuchains3x.git] / gdb / testsuite / gdb.cp / ref-params.cc
1 /* This test script is part of GDB, the GNU debugger.
2
3    Copyright 2006, 2007 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14  
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18    */
19
20 /* Author: Paul N. Hilfinger, AdaCore Inc. */
21
22 struct Parent {
23   Parent (int id0) : id(id0) { }
24   int id;
25 };
26
27 struct Child : public Parent {
28   Child (int id0) : Parent(id0) { }
29 };
30
31 int f1(Parent& R)
32 {
33   return R.id;                  /* Set breakpoint marker3 here.  */
34 }
35
36 int f2(Child& C)
37 {
38   return f1(C);                 /* Set breakpoint marker2 here.  */
39 }
40
41 struct OtherParent {
42   OtherParent (int other_id0) : other_id(other_id0) { }
43   int other_id;
44 };
45
46 struct MultiChild : public Parent, OtherParent {
47   MultiChild (int id0) : Parent(id0), OtherParent(id0 * 2) { }
48 };
49
50 int mf1(OtherParent& R)
51 {
52   return R.other_id;
53 }
54
55 int mf2(MultiChild& C)
56 {
57   return mf1(C);
58 }
59
60 int main(void) 
61 {
62   Child Q(42);
63   Child& QR = Q;
64
65   #ifdef usestubs
66      set_debug_traps();
67      breakpoint();
68   #endif
69
70   /* Set breakpoint marker1 here.  */
71
72   f2(Q);
73   f2(QR);
74
75   MultiChild MQ(53);
76   MultiChild& MQR = MQ;
77
78   mf2(MQ);                      /* Set breakpoint MQ here.  */
79 }