What's the best way to view accurate disassembly in VC++ 2010 while in Win32 Release mode?

后端 未结 4 1513
予麋鹿
予麋鹿 2021-01-16 03:42

I am writing assembly-level optimized code, and I need to make sure that the C++ compiler is working with it correctly in Release-Mode.

I used to be able to get Rele

4条回答
  •  死守一世寂寞
    2021-01-16 04:23

    If you want to use the debugger to view the disassembly, you can place a __debugbreak() intrinsic call right before the code which you want to view.

提交回复
热议问题