Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for moveArchLowering16 (0.16 sec)

  1. test/codegen/copy.go

    	copy(b, x[:])
    }
    
    func moveArchLowering8(b []byte, x *[8]byte) {
    	_ = b[8]
    	// amd64:-".*memmove"
    	// arm64:-".*memmove"
    	// ppc64x:-".*memmove"
    	copy(b, x[:])
    }
    
    func moveArchLowering16(b []byte, x *[16]byte) {
    	_ = b[16]
    	// amd64:-".*memmove"
    	copy(b, x[:])
    }
    
    // Check that no branches are generated when the pointers are [not] equal.
    
    func ptrEqual() {
    	// amd64:-"JEQ",-"JNE"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 14:09:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top