You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
244 B
7 lines
244 B
4 years ago
|
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
|
||
|
}
|