From f3a3df9e553e37faaf879346d9fc442da7248e9e Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Tue, 26 Feb 2019 18:22:04 +0100 Subject: [PATCH] ARM: Assume that double and long double are 4 Byte for now (FIXME). * module/mescc/armv4/info.scm (armv4:type-alist): Assume that double and long double are 4 Byte for now (FIXME). --- module/mescc/armv4/info.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/mescc/armv4/info.scm b/module/mescc/armv4/info.scm index 6e2f8ab1..44d47ea6 100644 --- a/module/mescc/armv4/info.scm +++ b/module/mescc/armv4/info.scm @@ -53,8 +53,8 @@ ("unsigned long long int" . ,(make-type 'unsigned 8 #f)) ("float" . ,(make-type 'float 4 #f)) - ("double" . ,(make-type 'float 8 #f)) - ("long double" . ,(make-type 'float 8 #f)) + ("double" . ,(make-type 'float 4 #f)) ; FIXME + ("long double" . ,(make-type 'float 4 #f)) ; FIXME ("short int" . ,(make-type 'signed 2 #f)) ("unsigned short int" . ,(make-type 'unsigned 2 #f))