(self)
| 3967 | assert isinstance(result, FPRef) |
| 3968 | |
| 3969 | def test_fp_unsigned_to_fp(self): |
| 3970 | bv = BitVec("bv", 32) |
| 3971 | result = fpUnsignedToFP(RNE(), bv, Float32()) |
| 3972 | assert isinstance(result, FPRef) |
| 3973 | |
| 3974 | def test_fp_operator_overloads(self): |
| 3975 | x, y = FPs("x y", Float32()) |
nothing calls this directly
no test coverage detected