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

后端 未结 4 1521
予麋鹿
予麋鹿 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:42

    These used to be methods of causing breakponts:

    _asm
    {
      int 3
    }
    

    or

    _asm
    {
      _emit 0xcc
    }
    

    or was it

    _emit 0xcc
    

    I'm not sure of the syntax (it's been a while) but hopefully something can be made of it.

提交回复
热议问题