Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CanonicalLocalSplits (0.27 sec)

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

    	lssk := LocalSlotSplitKey{name, offset, t}
    	if als, ok := f.CanonicalLocalSplits[lssk]; ok {
    		return als
    	}
    	// Note: the _ field may appear several times.  But
    	// have no fear, identically-named but distinct Autos are
    	// ok, albeit maybe confusing for a debugger.
    	ls := f.fe.SplitSlot(name, sfx, offset, t)
    	f.CanonicalLocalSplits[lssk] = &ls
    	return &ls
    }
    
    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