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