@@ -418,17 +418,11 @@ extern "C" LLVMAttributeRef LLVMRustCreateMemoryEffectsAttr(LLVMContextRef C,
418
418
}
419
419
}
420
420
421
- <<<<<<< HEAD
422
421
// Enable all fast-math flags, including those which will cause floating-point operations
423
422
// to return poison for some well-defined inputs. This function can only be used to build
424
423
// unsafe Rust intrinsics. That unsafety does permit additional optimizations, but at the
425
424
// time of writing, their value is not well-understood relative to those enabled by
426
425
// LLVMRustSetAlgebraicMath.
427
- ||||||| parent of 019019d83e2 (make simd_reduce_{mul,add}_unordered use only the 'reassoc' flag, not all fast-math flags)
428
- // Enable a fast-math flag
429
- =======
430
- // Enable all fast-math flags
431
- >>>>>>> 019019d83e2 (make simd_reduce_{mul,add}_unordered use only the 'reassoc' flag, not all fast-math flags)
432
426
//
433
427
// https://llvm.org/docs/LangRef.html#fast-math-flags
434
428
extern "C" void LLVMRustSetFastMath(LLVMValueRef V) {
@@ -456,7 +450,12 @@ extern "C" void LLVMRustSetAlgebraicMath(LLVMValueRef V) {
456
450
}
457
451
}
458
452
459
- // Enable the reassoc fast-math flag
453
+ // Enable the reassoc fast-math flag, allowing transformations that pretend
454
+ // floating-point addition and multiplication are associative.
455
+ //
456
+ // Note that this does NOT enable any flags which can cause a floating-point operation on
457
+ // well-defined inputs to return poison, and therefore this function can be used to build
458
+ // safe Rust intrinsics (such as fadd_algebraic).
460
459
//
461
460
// https://llvm.org/docs/LangRef.html#fast-math-flags
462
461
extern "C" void LLVMRustSetAllowReassoc(LLVMValueRef V) {
0 commit comments