(self)
| 3957 | assert isinstance(result, FPRef) |
| 3958 | |
| 3959 | def test_fp_real_to_fp(self): |
| 3960 | r = Real("r") |
| 3961 | result = fpRealToFP(RNE(), r, Float32()) |
| 3962 | assert isinstance(result, FPRef) |
| 3963 | |
| 3964 | def test_fp_signed_to_fp(self): |
| 3965 | bv = BitVec("bv", 32) |
nothing calls this directly
no test coverage detected