arm: fix some fp comparisons that worked by accident.
authorAli Saidi <Ali.Saidi@ARM.com>
Fri, 15 Feb 2013 22:40:08 +0000 (17:40 -0500)
committerAli Saidi <Ali.Saidi@ARM.com>
Fri, 15 Feb 2013 22:40:08 +0000 (17:40 -0500)
commitdb5c478e707ba5c7ffe8713ece5534924208500a
tree2b9534a2915e78032cd15d529e0158324d12791f
parent44120460411b97bf084fb24a669bd5e600601cb5
arm: fix some fp comparisons that worked by accident.

The explict tests in the follwing fp comparison operations were
incorrect as they checked for only signaling NaNs and not quite-NaNs
as well. When compiled with gcc, the comparison generates a fp exception
that causes the FE_INVALID flag to be set and we check for it, so even
though the check was incorrect, the correct exception was set. With clang
this behavior seems to not occur. The checks are updated to test for nans and
the behavior is now correct with both clang and gcc.
src/arch/arm/isa/insts/neon.isa