From f87afa72e06842da1f1bb902e4a192195646134b Mon Sep 17 00:00:00 2001 From: grischka Date: Sun, 9 Jul 2017 12:38:25 +0200 Subject: 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. --- arm64-gen.c | 1 - 1 file changed, 1 deletion(-) (limited to 'arm64-gen.c') 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; -- cgit v1.3.1