Skip to content

Commit 04c4ab4

Browse files
clean up internal comments about float semantics
- remove an outdated FIXME - add reference to floating-point semantics issue Co-authored-by: Jubilee <[email protected]>
1 parent fc9b01f commit 04c4ab4

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

core/src/num/f16.rs

+1
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,7 @@ impl f16 {
435435
// WASM, see llvm/llvm-project#96437). These are platforms bugs, and Rust will misbehave on
436436
// such platforms, but we can at least try to make things seem as sane as possible by being
437437
// careful here.
438+
// see also https://github.com/rust-lang/rust/issues/114479
438439
if self.is_infinite() {
439440
// Thus, a value may compare unequal to infinity, despite having a "full" exponent mask.
440441
FpCategory::Infinite

core/src/num/f32.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -662,10 +662,7 @@ impl f32 {
662662
// hardware flushes subnormals to zero. These are platforms bugs, and Rust will misbehave on
663663
// such hardware, but we can at least try to make things seem as sane as possible by being
664664
// careful here.
665-
//
666-
// FIXME(jubilee): Using x87 operations is never necessary in order to function
667-
// on x86 processors for Rust-to-Rust calls, so this issue should not happen.
668-
// Code generation should be adjusted to use non-C calling conventions, avoiding this.
665+
// see also https://github.com/rust-lang/rust/issues/114479
669666
if self.is_infinite() {
670667
// A value may compare unequal to infinity, despite having a "full" exponent mask.
671668
FpCategory::Infinite

core/src/num/f64.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -660,10 +660,7 @@ impl f64 {
660660
// float semantics Rust relies on: x87 uses a too-large exponent, and some hardware flushes
661661
// subnormals to zero. These are platforms bugs, and Rust will misbehave on such hardware,
662662
// but we can at least try to make things seem as sane as possible by being careful here.
663-
//
664-
// FIXME(jubilee): Using x87 operations is never necessary in order to function
665-
// on x86 processors for Rust-to-Rust calls, so this issue should not happen.
666-
// Code generation should be adjusted to use non-C calling conventions, avoiding this.
663+
// see also https://github.com/rust-lang/rust/issues/114479
667664
//
668665
// Thus, a value may compare unequal to infinity, despite having a "full" exponent mask.
669666
// And it may not be NaN, as it can simply be an "overextended" finite value.

0 commit comments

Comments
 (0)