If we have this code:
int foo=100;
int& reference = foo;
int* pointer = &reference;
There\'s no actual binary difference in the ref
There is absolutely nothing reliable about the relationship between C++ code and what machine code a compiler generates.
Some people say "in my experience ... etc. etc. etc." but this is more unreliable than you may realize. Not many people have actual experience in any substantial cross-section of all the possible compiler/architecture combinations. [Edit: I think that Crashworks proves me wrong though. :-)]
Consider the following list of C++ compilers:
Now multiply this list by the following short list of machine architectures:
Now multiply by operating system and optimization flags, and you may find that everyone's experience is woefully lacking.