Paul Gofman : dbghelp: Fix unwind opcodes on x64.

Alexandre Julliard julliard at winehq.org
Mon Jun 7 15:02:07 CDT 2021


Module: wine
Branch: stable
Commit: 3fab693d009491e606d5b9ff7fc3ade226dcdee8
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3fab693d009491e606d5b9ff7fc3ade226dcdee8

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>
(cherry picked from commit 6bcde00566f506ffb1f7cfd9e584c793d6f4a02f)
Signed-off-by: Michael Stefaniuc <mstefani 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