Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MatchPos (0.13 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)
  2. src/cmd/link/internal/ld/macho.go

    	}
    
    	if sect.Name == ".init_array" {
    		msect.name = "__mod_init_func"
    		msect.flag = S_MOD_INIT_FUNC_POINTERS
    	}
    
    	// Some platforms such as watchOS and tvOS require binaries with
    	// bitcode enabled. The Go toolchain can't output bitcode, so use
    	// a marker section in the __LLVM segment, "__asm", to tell the Apple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top