diff options
| author | grischka <grischka> | 2017-07-09 12:38:25 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2017-07-09 12:38:25 +0200 |
| commit | f87afa72e06842da1f1bb902e4a192195646134b (patch) | |
| tree | 83dd60adf5948dfe0bf25c46d0f821d79d299b63 /arm64-gen.c | |
| parent | 9ba76ac834608f76b734674048a7cc4334051e32 (diff) | |
| download | tinycc-f87afa72e06842da1f1bb902e4a192195646134b.tar.gz tinycc-f87afa72e06842da1f1bb902e4a192195646134b.tar.bz2 | |
refactor enums
Eliminate VT_ENUM as a basic type. Instead use the integral
types VT_InT/VT_LLONG with an additional flag to indicate
that it is an enum.
Diffstat (limited to 'arm64-gen.c')
| -rw-r--r-- | arm64-gen.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arm64-gen.c b/arm64-gen.c index 1ebbd2b..86b3af7 100644 --- a/arm64-gen.c +++ b/arm64-gen.c @@ -249,7 +249,6 @@ static int arm64_type_size(int t) case VT_BYTE: return 0; case VT_SHORT: return 1; case VT_PTR: return 3; - case VT_ENUM: return 2; case VT_FUNC: return 3; case VT_FLOAT: return 2; case VT_DOUBLE: return 3; |
