(&mut self, lhs: &'ll Value, rhs: &'ll Value)
| 345 | } |
| 346 | |
| 347 | fn frem_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value { |
| 348 | unsafe { |
| 349 | let instr = llvm::LLVMBuildFRem(self.llbuilder, lhs, rhs, unnamed()); |
| 350 | llvm::LLVMRustSetFastMath(instr); |
| 351 | instr |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | fn checked_binop( |
| 356 | &mut self, |
nothing calls this directly
no test coverage detected