blob: 4666e464818fb5c43a526f2b4abe016fb093e1aa (
plain)
1
2
3
4
5
6
|
int&aa(int&x,int&b); // Sp Before Byref Func, Sp After Byref Func, Sp Before Byref, Sp After Byref
int aa(int&x,int&) // Sp Before Byref, Sp Before Unnamed Byref, Sp After Byref
{
b = aa(x,b);
c = aa(&y,&d); // Sp Addr
}
|