Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for correctness (0.18 sec)

  1. src/cmd/compile/internal/rangefunc/rewrite.go

    debugger. Because variables have all been resolved to the specific
    objects they represent, there is no danger of using plain "p1" and
    colliding with a Go variable named "p1"; the # is just nice to have,
    not for correctness.)
    
    It can also happen that there are fewer range variables than function
    arguments, in which case we end up with something like
    
    	f(func(x T1, _ T2) bool {
    		...
    	})
    
    or
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    			// the stack pointer back up (if it ever went down) and then jumps
    			// to a new function entirely. That form of instruction must read
    			// all the parameters for correctness, and similarly it must not
    			// read the out arguments - they won't be set until the new
    			// function runs.
    			lv.cache.tailuevar = append(lv.cache.tailuevar, int32(i))
    
    		case ir.PPARAMOUT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top