(&mut self, lhs: &'ll Value, rhs: &'ll Value)
| 313 | } |
| 314 | |
| 315 | fn fadd_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value { |
| 316 | unsafe { |
| 317 | let instr = llvm::LLVMBuildFAdd(self.llbuilder, lhs, rhs, unnamed()); |
| 318 | llvm::LLVMRustSetFastMath(instr); |
| 319 | instr |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | fn fsub_fast(&mut self, lhs: &'ll Value, rhs: &'ll Value) -> &'ll Value { |
| 324 | unsafe { |
nothing calls this directly
no test coverage detected