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.

9 lines
264 B

int&aa(int&x,int&b);
// sp_before_byref_func, sp_after_byref_func, sp_before_byref, sp_after_byref, sp_before_byref, sp_after_byref
int aa(int&x,int&)
// sp_before_byref, sp_after_byref, sp_before_unnamed_byref
{
b = aa(x,b);
c = aa(&y,&d); // sp_addr
}