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

Fixes NaN comparisons

This commit is contained in:
Brian Fiete 2024-10-16 13:25:17 -04:00
parent 7c0293620a
commit 55298ee884
8 changed files with 256 additions and 38 deletions

View file

@ -166,11 +166,13 @@ struct BeCmpResult
{
BeCmpKind mCmpKind;
int mResultVRegIdx;
bool mInverted;
BeCmpResult()
{
mCmpKind = BeCmpKind_None;
mResultVRegIdx = -1;
mInverted = false;
}
};