frontend/ir/value: Add U16U32U64 type to represent floating point types
This commit is contained in:
parent
eb3e0d5908
commit
974fbf0677
1 changed files with 1 additions and 0 deletions
|
@ -163,6 +163,7 @@ using U32 = TypedValue<Type::U32>;
|
||||||
using U64 = TypedValue<Type::U64>;
|
using U64 = TypedValue<Type::U64>;
|
||||||
using U128 = TypedValue<Type::U128>;
|
using U128 = TypedValue<Type::U128>;
|
||||||
using U32U64 = TypedValue<Type::U32 | Type::U64>;
|
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 UAny = TypedValue<Type::U8 | Type::U16 | Type::U32 | Type::U64>;
|
||||||
using UAnyU128 = TypedValue<Type::U8 | Type::U16 | Type::U32 | Type::U64 | Type::U128>;
|
using UAnyU128 = TypedValue<Type::U8 | Type::U16 | Type::U32 | Type::U64 | Type::U128>;
|
||||||
using NZCV = TypedValue<Type::NZCVFlags>;
|
using NZCV = TypedValue<Type::NZCVFlags>;
|
||||||
|
|
Loading…
Reference in a new issue