(&mut self, lhs: &'ll Value, rhs: &'ll Value)
| 321 | } |
| 322 | |
| 323 | fn fsub_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value { |
| 324 | unsafe { |
| 325 | let instr = llvm::LLVMBuildFSub(self.llbuilder, lhs, rhs, unnamed()); |
| 326 | llvm::LLVMRustSetFastMath(instr); |
| 327 | instr |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | fn fmul_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value { |
| 332 | unsafe { |
nothing calls this directly
no test coverage detected