Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsSlice3 (0.48 sec)

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

    			}
    		} else {
    			if rhs == nil {
    				r = s.zeroVal(t)
    			} else {
    				r = s.expr(rhs)
    			}
    		}
    
    		var skip skipMask
    		if rhs != nil && (rhs.Op() == ir.OSLICE || rhs.Op() == ir.OSLICE3 || rhs.Op() == ir.OSLICESTR) && ir.SameSafeExpr(rhs.(*ir.SliceExpr).X, n.X) {
    			// We're assigning a slicing operation back to its source.
    			// Don't write back fields we aren't changing. See issue #14855.
    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