1 // This source code must be compiled on a ppc64 machine!!
2 // The compilation command must be:
3 //
4 // g++ -g -Wall -O2 -shared -o libtest36-ppc64-aliases-v0.so test36-ppc64-aliases-v0.cc
5 
6 struct S
7 {
8   S();
9   S(int);
10   ~S();
11   int m0;
12 };
13 
S()14 S::S()
15   : m0()
16 {}
17 
S(int s)18 S::S(int s)
19   : m0(s)
20 {}
21 
~S()22 S::~S()
23 {}
24 
25 void
foo(S &)26 foo(S&)
27 {}
28