Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DivisionNeedsFixUp (0.22 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    	r := ((b << 32) & (1 << 63)) | (0x7ff << 52) | ((b & 0x7fffff) << (52 - 23))
    	return math.Float64frombits(r)
    }
    
    // DivisionNeedsFixUp reports whether the division needs fix-up code.
    func DivisionNeedsFixUp(v *Value) bool {
    	return v.AuxInt == 0
    }
    
    // auxFrom64F encodes a float64 value so it can be stored in an AuxInt.
    func auxFrom64F(f float64) int64 {
    	if f != f {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top