In Visual Studio debugmode compiled executable: jmp to function body instead of direct address in call

后端 未结 1 667
萌比男神i
萌比男神i 2020-12-12 01:47

imagine this bogus program:

void foo ( void )
{
    // anything
}

int main ()
{
    foo ();
    return 0;
}

When compiled in debug mode wi

相关标签:
1条回答
  • 2020-12-12 02:17

    Turn off "incremental linking"

    Your question is a lot like this one Address of function is not actual code address

    0 讨论(0)
提交回复
热议问题