| ... | @@ -581,7 +581,7 @@ ZigLLVMDILocation *ZigLLVMGetDebugLoc(unsigned line, unsigned col, ZigLLVMDIScop | ... | @@ -581,7 +581,7 @@ ZigLLVMDILocation *ZigLLVMGetDebugLoc(unsigned line, unsigned col, ZigLLVMDIScop |
| 581 | void ZigLLVMSetFastMath(LLVMBuilderRef builder_wrapped, bool on_state) { | 581 | void ZigLLVMSetFastMath(LLVMBuilderRef builder_wrapped, bool on_state) { |
| 582 | if (on_state) { | 582 | if (on_state) { |
| 583 | FastMathFlags fmf; | 583 | FastMathFlags fmf; |
| 584 | fmf.setUnsafeAlgebra(); | 584 | fmf.setFast(); |
| 585 | unwrap(builder_wrapped)->setFastMathFlags(fmf); | 585 | unwrap(builder_wrapped)->setFastMathFlags(fmf); |
| 586 | } else { | 586 | } else { |
| 587 | unwrap(builder_wrapped)->clearFastMathFlags(); | 587 | unwrap(builder_wrapped)->clearFastMathFlags(); |