[PATCH 03/22] include: Add __wine_jmp_buf for PPC64

André Hentschel nerv at dawncrow.de
Sun Aug 16 14:01:41 CDT 2020


Signed-off-by: André Hentschel <nerv at dawncrow.de>
---
 include/wine/exception.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/wine/exception.h b/include/wine/exception.h
index a6ada7af211..8255f2c524b 100644
--- a/include/wine/exception.h
+++ b/include/wine/exception.h
@@ -99,6 +99,8 @@ typedef struct { DECLSPEC_ALIGN(16) struct { unsigned __int64 Part[2]; } reg[16]
 typedef struct { int reg[28]; } __wine_jmp_buf;
 #elif defined(__aarch64__)
 typedef struct { __int64 reg[24]; } __wine_jmp_buf;
+#elif defined(__powerpc64__)
+typedef struct { __int64 reg[64]; } __wine_jmp_buf;
 #else
 typedef struct { int reg; } __wine_jmp_buf;
 #endif
-- 
2.25.1




More information about the wine-devel mailing list