1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Merge pull request #1481 from aharabada/master

Fixed negating floats during comptime
This commit is contained in:
Brian Fiete 2022-03-01 18:53:40 +01:00 committed by GitHub
commit f9d173ea65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;