(self)
| 3894 | assert isinstance(result, FPRef) |
| 3895 | |
| 3896 | def test_fp_fma(self): |
| 3897 | x, y, z = FPs("x y z", Float32()) |
| 3898 | result = fpFMA(RNE(), x, y, z) |
| 3899 | assert isinstance(result, FPRef) |
| 3900 | |
| 3901 | def test_fp_rem(self): |
| 3902 | x, y = FPs("x y", Float32()) |