The arch ppc32 had long doubles incorrectly set as having 128 bits. Fix this by using the correct 64 bits size for them. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- target.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target.c b/target.c index 146c4125d..530970912 100644 --- a/target.c +++ b/target.c @@ -120,6 +120,7 @@ void init_target(void) switch (arch_mach) { case MACH_ARM: case MACH_MIPS32: + case MACH_PPC32: case MACH_S390: case MACH_S390X: case MACH_SPARC32: -- 2.24.0