diff mbox series

[6/8] arch: ppc32 has 64-bit long double

Message ID 20191115011355.53495-7-luc.vanoostenryck@gmail.com (mailing list archive)
State Superseded, archived
Headers show
Series Miscellaneous arch specific fixes | expand

Commit Message

Luc Van Oostenryck Nov. 15, 2019, 1:13 a.m. UTC
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@gmail.com>
---
 target.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

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: