From 724175694575707a2129eedb534b9182f482c8d5 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 8 May 2017 21:34:08 +0200 Subject: [PATCH] mescc: Minimal support for short. * module/language/c99/compiler.mes (i386:type-alist): Add short. --- module/language/c99/compiler.mes | 1 + 1 file changed, 1 insertion(+) diff --git a/module/language/c99/compiler.mes b/module/language/c99/compiler.mes index 4a9aa26c..0c946e54 100644 --- a/module/language/c99/compiler.mes +++ b/module/language/c99/compiler.mes @@ -1132,6 +1132,7 @@ (define i386:type-alist '(("char" . (builtin 1 #f)) + ("short" . (builtin 2 #f)) ("int" . (builtin 4 #f)))) (define (type->size info o)