2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.oliva / stkalign.C
blob045285fea89250ced9336eec0f99c9c7f17a5b80
1 // { dg-do assemble { xfail i*86-*-* } }
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));