summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2021-11-06 12:09:56 -0700
committerAdrian Thurston <thurston@colm.net>2021-11-06 12:10:44 -0700
commit9f0ac141731d635fbdc963c16c198d5de920f31d (patch)
tree67aa77acae4949e9e9def7465c62b48a72fc878e
parent6895f7d153500a18f08fa9e64972799763c775e6 (diff)
downloadcolm-9f0ac141731d635fbdc963c16c198d5de920f31d.tar.gz
C codegen: use the 'signed' prefix when specifying the size of the signed types
-rw-r--r--src/libfsm/common.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libfsm/common.cc b/src/libfsm/common.cc
index 349d06f7..9a14a290 100644
--- a/src/libfsm/common.cc
+++ b/src/libfsm/common.cc
@@ -42,16 +42,16 @@ const char *defaultOutFnC( const char *inputFileName )
HostType hostTypesC[] =
{
{ "char", 0, "char", (CHAR_MIN != 0), true, false, SCHAR_MIN, SCHAR_MAX, 0, UCHAR_MAX, sizeof(char) },
- { "signed", "char", "char", true, true, false, SCHAR_MIN, SCHAR_MAX, 0, 0, sizeof(char) },
+ { "signed", "char", "char", true, true, false, SCHAR_MIN, SCHAR_MAX, 0, 0, sizeof(signed char) },
{ "unsigned", "char", "uchar", false, true, false, 0, 0, 0, UCHAR_MAX, sizeof(unsigned char) },
{ "short", 0, "short", true, true, false, SHRT_MIN, SHRT_MAX, 0, 0, sizeof(short) },
- { "signed", "short", "short", true, true, false, SHRT_MIN, SHRT_MAX, 0, 0, sizeof(short) },
+ { "signed", "short", "short", true, true, false, SHRT_MIN, SHRT_MAX, 0, 0, sizeof(signed short) },
{ "unsigned", "short", "ushort", false, true, false, 0, 0, 0, USHRT_MAX, sizeof(unsigned short) },
{ "int", 0, "int", true, true, false, INT_MIN, INT_MAX, 0, 0, sizeof(int) },
- { "signed", "int", "int", true, true, false, INT_MIN, INT_MAX, 0, 0, sizeof(int) },
+ { "signed", "int", "int", true, true, false, INT_MIN, INT_MAX, 0, 0, sizeof(signed int) },
{ "unsigned", "int", "uint", false, true, false, 0, 0, 0, UINT_MAX, sizeof(unsigned int) },
{ "long", 0, "long", true, true, false, LONG_MIN, LONG_MAX, 0, 0, sizeof(long) },
- { "signed", "long", "long", true, true, false, LONG_MIN, LONG_MAX, 0, 0, sizeof(long) },
+ { "signed", "long", "long", true, true, false, LONG_MIN, LONG_MAX, 0, 0, sizeof(signed long) },
{ "unsigned", "long", "ulong", false, true, false, 0, 0, 0, ULONG_MAX, sizeof(unsigned long) },
};