mescc: Add signed char.
* module/mescc/armv4/info.scm (armv4:type-alist): Add signed char. * module/mescc/i386/info.scm (i386:type-alist): Likewise. * module/mescc/x86_64/info.scm (x86_64:type-alist): Likewise.
This commit is contained in:
parent
3973e87219
commit
eba5c15088
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Mes --- Maxwell Equations of Software
|
;;; GNU Mes --- Maxwell Equations of Software
|
||||||
;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2018,2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;; Copyright © 2019 Danny Milosavljevic <dannym@scratchpost.org>
|
;;; Copyright © 2019 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Mes.
|
;;; This file is part of GNU Mes.
|
||||||
|
@ -43,6 +43,7 @@
|
||||||
("long long int" . ,(make-type 'signed 8 #f))
|
("long long int" . ,(make-type 'signed 8 #f))
|
||||||
|
|
||||||
("void" . ,(make-type 'void 1 #f))
|
("void" . ,(make-type 'void 1 #f))
|
||||||
|
("signed char" . ,(make-type 'signed 1 #f))
|
||||||
("unsigned char" . ,(make-type 'unsigned 1 #f))
|
("unsigned char" . ,(make-type 'unsigned 1 #f))
|
||||||
("unsigned short" . ,(make-type 'unsigned 2 #f))
|
("unsigned short" . ,(make-type 'unsigned 2 #f))
|
||||||
("unsigned" . ,(make-type 'unsigned 4 #f))
|
("unsigned" . ,(make-type 'unsigned 4 #f))
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Mes --- Maxwell Equations of Software
|
;;; GNU Mes --- Maxwell Equations of Software
|
||||||
;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2018,2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Mes.
|
;;; This file is part of GNU Mes.
|
||||||
;;;
|
;;;
|
||||||
|
@ -42,6 +42,7 @@
|
||||||
("long long int" . ,(make-type 'signed 4 #f))
|
("long long int" . ,(make-type 'signed 4 #f))
|
||||||
|
|
||||||
("void" . ,(make-type 'void 1 #f))
|
("void" . ,(make-type 'void 1 #f))
|
||||||
|
("signed char" . ,(make-type 'signed 1 #f))
|
||||||
("unsigned char" . ,(make-type 'unsigned 1 #f))
|
("unsigned char" . ,(make-type 'unsigned 1 #f))
|
||||||
("unsigned short" . ,(make-type 'unsigned 2 #f))
|
("unsigned short" . ,(make-type 'unsigned 2 #f))
|
||||||
("unsigned" . ,(make-type 'unsigned 4 #f))
|
("unsigned" . ,(make-type 'unsigned 4 #f))
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Mes --- Maxwell Equations of Software
|
;;; GNU Mes --- Maxwell Equations of Software
|
||||||
;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2018,2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Mes.
|
;;; This file is part of GNU Mes.
|
||||||
;;;
|
;;;
|
||||||
|
@ -43,6 +43,7 @@
|
||||||
("long long int" . ,(make-type 'signed 8 #f))
|
("long long int" . ,(make-type 'signed 8 #f))
|
||||||
|
|
||||||
("void" . ,(make-type 'void 1 #f))
|
("void" . ,(make-type 'void 1 #f))
|
||||||
|
("signed char" . ,(make-type 'signed 1 #f))
|
||||||
("unsigned char" . ,(make-type 'unsigned 1 #f))
|
("unsigned char" . ,(make-type 'unsigned 1 #f))
|
||||||
("unsigned short" . ,(make-type 'unsigned 2 #f))
|
("unsigned short" . ,(make-type 'unsigned 2 #f))
|
||||||
("unsigned" . ,(make-type 'unsigned 4 #f))
|
("unsigned" . ,(make-type 'unsigned 4 #f))
|
||||||
|
|
Loading…
Reference in a new issue