Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 31 of 31 for _ignored (0.08 sec)

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

    			// a[i] = v
    			t := left.X.Type()
    			n := t.NumElem()
    
    			i := s.expr(left.Index) // index
    			if n == 0 {
    				// The bounds check must fail.  Might as well
    				// ignore the actual index and just use zeros.
    				z := s.constInt(types.Types[types.TINT], 0)
    				s.boundsCheck(z, z, ssa.BoundsIndex, false)
    				return
    			}
    			if n != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top