Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MatchPos (0.31 sec)

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

    func (f *Func) useFMA(v *Value) bool {
    	if !f.Config.UseFMA {
    		return false
    	}
    	if base.FmaHash == nil {
    		return true
    	}
    	return base.FmaHash.MatchPos(v.Pos, nil)
    }
    
    // NewLocal returns a new anonymous local variable of the given type.
    func (f *Func) NewLocal(pos src.XPos, typ *types.Type) *ir.Name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top