| 2247 | } |
| 2248 | |
| 2249 | void testFUCOMPP() { |
| 2250 | doFUCOMPPTest(2.0, 2.0, 0x4000); |
| 2251 | doFUCOMPPTest(2.0, 1.0, 0x0100); |
| 2252 | doFUCOMPPTest(2.0, 3.0, 0x0000); |
| 2253 | doFUCOMPPTest(2.0, INFINITY, 0x0000); |
| 2254 | doFUCOMPPTest(2.0, NAN, 0x4500); |
| 2255 | } |
| 2256 | |
| 2257 | static void doCOMIntTest(float val1, U32 val2, U32 swResult, bool pop, bool checkValue = true) { |
| 2258 | struct FPU_Float result; |
no test coverage detected