Paul Gofman : dbghelp: Fix unwind opcodes on x64.

Alexandre Julliard julliard at winehq.org
Fri Jan 15 15:39:44 CST 2021


Module: wine
Branch: master
Commit: 6bcde00566f506ffb1f7cfd9e584c793d6f4a02f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=6bcde00566f506ffb1f7cfd9e584c793d6f4a02f

Author: Paul Gofman <pgofman at codeweavers.com>
Date:   Fri Jan 15 16:06:40 2021 +0300

dbghelp: Fix unwind opcodes on x64.

Signed-off-by: Paul Gofman <pgofman at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dbghelp/cpu_x86_64.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/dbghelp/cpu_x86_64.c b/dlls/dbghelp/cpu_x86_64.c
index c2789d0d71b..c04d8db61cf 100644
--- a/dlls/dbghelp/cpu_x86_64.c
+++ b/dlls/dbghelp/cpu_x86_64.c
@@ -41,7 +41,8 @@ typedef enum _UNWIND_OP_CODES
     UWOP_SET_FPREG,
     UWOP_SAVE_NONVOL,
     UWOP_SAVE_NONVOL_FAR,
-    UWOP_SAVE_XMM128,
+    UWOP_EPILOG,
+    UWOP_SAVE_XMM128 = 8,
     UWOP_SAVE_XMM128_FAR,
     UWOP_PUSH_MACHFRAME
 } UNWIND_CODE_OPS;




More information about the wine-cvs mailing list