Displaying 1 result from an estimated 1 matches for "102594h".
Did you mean:
1025942
2013 Sep 03
1
[LLVMdev] X86_thiscall
...the generated code does not actually seem to be
using the thiscall calling convention specified for the called function:
0011001B mov dword ptr [esp+8],eax 0011001F mov
eax,dword ptr [esp+14h] 00110023 mov dword ptr [esp+4],eax
00110027 mov dword ptr [esp],102594h 0011002E call
Zeo::InterfaceGroup::get_interface (0151B133h) 00110033 add
esp,10h
0x102594 is the address of the object that I am trying to call a member
function on, and should be loaded into ecx by the code, instead of stored
on the stack. The result is that the right fun...