Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetInlinabilityChecked (0.63 sec)

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

    func (f *Func) SetHasDefer(b bool)                 { f.flags.set(funcHasDefer, b) }
    func (f *Func) SetNilCheckDisabled(b bool)         { f.flags.set(funcNilCheckDisabled, b) }
    func (f *Func) SetInlinabilityChecked(b bool)      { f.flags.set(funcInlinabilityChecked, b) }
    func (f *Func) SetNeverReturns(b bool)             { f.flags.set(funcNeverReturns, b) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/staticinit/sched.go

    	minitsym := typecheck.LookupNum("map.init.", mapinitgen)
    	mapinitgen++
    
    	fn := ir.NewFunc(n.Pos(), n.Pos(), minitsym, types.NewSignature(nil, nil, nil))
    	fn.SetInlinabilityChecked(true) // suppress inlining (which would defeat the point)
    	typecheck.DeclFunc(fn)
    	if base.Debug.WrapGlobalMapDbg > 0 {
    		fmt.Fprintf(os.Stderr, "=-= generated func is %v\n", fn)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top