diff options
Diffstat (limited to 'expr.c')
-rw-r--r-- | expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -397,7 +397,7 @@ inttype(unsigned long long val, bool decimal, char *end) step = i % 2 || decimal ? 2 : 1; for (; i < LEN(limits); i += step) { t = limits[i].type; - if (val <= 0xffffffffffffffffu >> (8 - t->size << 3) + t->u.basic.issigned) + if (typehasint(t, val, false)) return t; } error(&tok.loc, "no suitable type for constant '%s'", tok.lit); |