frontend/ir/value: Add U16U32U64 type to represent floating point types

This commit is contained in:
Lioncash 2019-03-09 17:32:43 -05:00
parent 1e0933907a
commit 8036a54a74
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -163,6 +163,7 @@ using U32 = TypedValue<Type::U32>;
using U64 = TypedValue<Type::U64>;
using U128 = TypedValue<Type::U128>;
using U32U64 = TypedValue<Type::U32 | Type::U64>;
using U16U32U64 = TypedValue<Type::U16 | Type::U32 | Type::U64>;
using UAny = TypedValue<Type::U8 | Type::U16 | Type::U32 | Type::U64>;
using UAnyU128 = TypedValue<Type::U8 | Type::U16 | Type::U32 | Type::U64 | Type::U128>;
using NZCV = TypedValue<Type::NZCVFlags>;