diff options
author | Michael Forney <mforney@mforney.org> | 2020-06-02 14:04:51 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2020-06-02 14:04:51 -0700 |
commit | 0b153ef15c12a5a27f9a65000a3d7036b1829366 (patch) | |
tree | 4f16b276f27709e32353ac5d92e0587cfb37aaf1 | |
parent | 3d91966b0dcfe0bd0fc3a779a63d49546e46aea8 (diff) | |
download | cproc-0b153ef15c12a5a27f9a65000a3d7036b1829366.tar.xz |
decl: Improve error message for out-of-range enum constants
-rw-r--r-- | decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |