R
Rudy Ray Moore
This c++ line in MSVC++ .net 2003 7.1:
f(&d);
Generates this assembly:
00411C67 lea eax,[d]
00411C6A push eax
00411C6B call f (411159h)
00411C70 add esp,4
What's up with the "[d]"? I want to see the pointer value! How do I make
the pointer value appear? Please don't say "open your executable in
notepad."
Rudy
PS: I'm trying to debug a problem where the pointer value (&d) changes
during execution!
f(&d);
Generates this assembly:
00411C67 lea eax,[d]
00411C6A push eax
00411C6B call f (411159h)
00411C70 add esp,4
What's up with the "[d]"? I want to see the pointer value! How do I make
the pointer value appear? Please don't say "open your executable in
notepad."
Rudy
PS: I'm trying to debug a problem where the pointer value (&d) changes
during execution!