(&mut self, val: Self::Value, dest_ty: Self::Type)
| 1408 | } |
| 1409 | |
| 1410 | fn fptosi_sat(&mut self, val: Self::Value, dest_ty: Self::Type) -> Self::Value { |
| 1411 | self.fptoint_sat(true, val, dest_ty) |
| 1412 | } |
| 1413 | |
| 1414 | fn fptoui(&mut self, val: Self::Value, dest_ty: Self::Type) -> Self::Value { |
| 1415 | if val.ty == dest_ty { |
nothing calls this directly
no test coverage detected