16 Aug
2020
16 Aug
'20
7:01 p.m.
Signed-off-by: André Hentschel <nerv(a)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