Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for constFloat64 (0.19 sec)

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

    	return s.f.ConstInt64(t, c)
    }
    func (s *state) constFloat32(t *types.Type, c float64) *ssa.Value {
    	return s.f.ConstFloat32(t, c)
    }
    func (s *state) constFloat64(t *types.Type, c float64) *ssa.Value {
    	return s.f.ConstFloat64(t, c)
    }
    func (s *state) constInt(t *types.Type, c int64) *ssa.Value {
    	if s.config.PtrSize == 8 {
    		return s.constInt64(t, c)
    	}
    	if int64(int32(c)) != c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top