Floating point equality is not bitwise equality, because NaN is not equal to anything, even itself. So comparing two floats must use a special directive.
However, if the floats are in a struct, then the compiler generates a MEMCMP directive, which compares bitwise.
Floating point equality is not bitwise equality, because NaN is not equal to anything, even itself. So comparing two floats must use a special directive.
However, if the floats are in a struct, then the compiler generates a MEMCMP directive, which compares bitwise.