aboutsummaryrefslogtreecommitdiff
path: root/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'expr.c')
-rw-r--r--expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/expr.c b/expr.c
index 4ad7f9d..1e94f68 100644
--- a/expr.c
+++ b/expr.c
@@ -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);