summaryrefslogtreecommitdiff
path: root/base_cgen.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-08-28 16:11:58 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-08-28 16:11:58 -0400
commit4227b244b99cdfb1a1022f7816e52256bcca4bc7 (patch)
tree54d6d5220b0d3a7997d10ffd33c848d9aecf3829 /base_cgen.c
parent38e5501205573597c6b8ef92e56ca76141b8e792 (diff)
added flexible numerical constants
Diffstat (limited to 'base_cgen.c')
-rw-r--r--base_cgen.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/base_cgen.c b/base_cgen.c
index 3b92c8e..d83b690 100644
--- a/base_cgen.c
+++ b/base_cgen.c
@@ -130,7 +130,6 @@ static bool cgen_ident(CGenerator *g, Identifier i, Location *where) {
static const char *builtin_type_to_str(BuiltinType b) {
/* TODO: make this return int/long/etc. if stdint.h is not available */
switch (b) {
- case BUILTIN_INT: return "int64_t";
case BUILTIN_I8: return "int8_t";
case BUILTIN_I16: return "int16_t";
case BUILTIN_I32: return "int32_t";