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).
This commit is contained in:
Danny Milosavljevic 2019-02-26 18:22:04 +01:00 committed by Jan Nieuwenhuizen
parent 9283e077b3
commit f3a3df9e55
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 2 deletions

View File

@ -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))