Rebase.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.oliva / stkalign.C
blob2b24f489e1e8d0a7de7a2006e25f42c8f638a481
1 // { dg-do assemble }
3 // Copyright (C) 2000 Free Software Foundation
5 // by Alexandre Oliva <aoliva@cygnus.com>
6 // distilled from libg++'s Fix.cc
9 struct Integer {
10   ~Integer () {}
13 void foo (const Integer& y);
14 Integer bar (const Integer& x);
16 void show (const Integer& x) {
17   foo (bar (x));