Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for t1041copy_ssa (0.09 sec)

  1. src/cmd/compile/internal/test/testdata/copy_test.go

    	mid  [10]byte
    	post [8]byte
    }
    
    //go:noinline
    func t10copy_ssa(y, x *[10]byte) {
    	*y = *x
    }
    func testCopy10(t *testing.T) {
    	a := T10{[8]byte{201, 202, 203, 204, 205, 206, 207, 208}, [10]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, [8]byte{211, 212, 213, 214, 215, 216, 217, 218}}
    	x := [10]byte{100, 101, 102, 103, 104, 105, 106, 107, 108, 109}
    	t10copy_ssa(&a.mid, &x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
Back to top