https://bugs.winehq.org/show_bug.cgi?id=21550
Bernhard Übelacker bernhardu@mailbox.org changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |bernhardu@mailbox.org
--- Comment #8 from Bernhard Übelacker bernhardu@mailbox.org --- I guess this issue can be closed as winedbg seems to be able to disassemble the instruction?
With "--gdb": Wine-gdb> disassemble sse2 Dump of assembler code for function _Z4sse2v: 0x004015b0 <+0>: push %ebp 0x004015b1 <+1>: mov %esp,%ebp 0x004015b3 <+3>: movapd %xmm0,%xmm0 0x004015b7 <+7>: nop 0x004015b8 <+8>: pop %ebp 0x004015b9 <+9>: ret End of assembler dump.
Without "--gdb": Wine-dbg>disassemble 0x004015b0,0x004015b9 0x000000004015b0 test+0x15b0: push %ebp 0x000000004015b1 test+0x15b1: mov %esp, %ebp 0x000000004015b3 test+0x15b3: movapd %xmm0, %xmm0 0x000000004015b7 test+0x15b7: nop 0x000000004015b8 test+0x15b8: pop %ebp 0x000000004015b9 test+0x15b9: ret