1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Fixed unary minus operator

This commit is contained in:
Simon Lübeß 2022-03-01 17:36:05 +01:00
parent 3dd4212ccd
commit da08966884

View file

@ -7637,6 +7637,7 @@ bool CeContext::Execute(CeFunction* startFunction, uint8* startStackPtr, uint8*
break;
case CeOp_Neg_F32:
CEOP_UNARY(-, float);
break;
case CeOp_Neg_F64:
CEOP_UNARY(-, double);
break;