1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Float to uint conversion in consteval

This commit is contained in:
Simon Lübeß 2022-05-30 22:26:52 +02:00
parent 75333a0928
commit 3f9c2fd3f7
2 changed files with 74 additions and 0 deletions

View file

@ -149,11 +149,19 @@ enum CeOp : int16
CeOp_Conv_F32_I16,
CeOp_Conv_F32_I32,
CeOp_Conv_F32_I64,
CeOp_Conv_F32_U8,
CeOp_Conv_F32_U16,
CeOp_Conv_F32_U32,
CeOp_Conv_F32_U64,
CeOp_Conv_F32_F64,
CeOp_Conv_F64_I8,
CeOp_Conv_F64_I16,
CeOp_Conv_F64_I32,
CeOp_Conv_F64_I64,
CeOp_Conv_F64_U8,
CeOp_Conv_F64_U16,
CeOp_Conv_F64_U32,
CeOp_Conv_F64_U64,
CeOp_Conv_F64_F32,
CEOP_SIZED_NUMERIC_PLUSF(Abs),