(&mut self, lhs: &'ll Value, rhs: &'ll Value)
| 337 | } |
| 338 | |
| 339 | fn fdiv_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value { |
| 340 | unsafe { |
| 341 | let instr = llvm::LLVMBuildFDiv(self.llbuilder, lhs, rhs, unnamed()); |
| 342 | llvm::LLVMRustSetFastMath(instr); |
| 343 | instr |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | fn frem_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value { |
| 348 | unsafe { |
nothing calls this directly
no test coverage detected