No, the `=` function code is generated as __fastcall, and `&` function call `=` 
as __fastcall.

If the `&` is not inlined in function `main` with compiler option `/Ob1` or 
`/Ob0`, then all is fine. But when the function `&` is inlined in function 
`main`, the code is generated as __stdcall to call the `=`.

Reply via email to