Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for OpConst8 (0.09 sec)

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

    	if x > y {
    		return x
    	}
    	return y
    }
    
    func isConstZero(v *Value) bool {
    	switch v.Op {
    	case OpConstNil:
    		return true
    	case OpConst64, OpConst32, OpConst16, OpConst8, OpConstBool, OpConst32F, OpConst64F:
    		return v.AuxInt == 0
    	}
    	return false
    }
    
    // reciprocalExact64 reports whether 1/c is exactly representable.
    func reciprocalExact64(c float64) bool {
    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