aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-06-02 14:04:51 -0700
committerMichael Forney <mforney@mforney.org>2020-06-02 14:04:51 -0700
commit0b153ef15c12a5a27f9a65000a3d7036b1829366 (patch)
tree4f16b276f27709e32353ac5d92e0587cfb37aaf1
parent3d91966b0dcfe0bd0fc3a779a63d49546e46aea8 (diff)
downloadcproc-0b153ef15c12a5a27f9a65000a3d7036b1829366.tar.xz
decl: Improve error message for out-of-range enum constants
-rw-r--r--decl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/decl.c b/decl.c
index 5a8712b..94e4b15 100644
--- a/decl.c
+++ b/decl.c
@@ -229,7 +229,7 @@ tagspec(struct scope *s)
}
} else if (i == 1ull << 32) {
invalid:
- error(&tok.loc, "enumerator '%s' value cannot be represented as 'int'", name);
+ error(&tok.loc, "enumerator '%s' value cannot be represented as 'int' or 'unsigned int'", name);
}
d = mkdecl(DECLCONST, &typeint, QUALNONE, LINKNONE);
d->value = mkintconst(t->repr, i);