[PATCH 4/9] include: Add __wine_jmp_buf for PPC64

André Hentschel nerv at dawncrow.de
Sun Apr 26 12:13:44 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 4bf4c7e6d95..f349b0e216a 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.17.1




More information about the wine-devel mailing list