go4.org@v0.0.0-20230225012048-214862532bf5/reflectutil/swapper_unsafe_14.go (about)

     1  // Copyright 2016 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // +build !ppc64,!ppc64le,!arm64,!mips,!mipsle,!mips64,!mips64le
     6  // +build !go1.5,!js,!appengine,!safe
     7  
     8  package reflectutil
     9  
    10  import "unsafe"
    11  
    12  const haveTypedMemmove = false
    13  
    14  func typedmemmove(reflect_rtype, dst, src unsafe.Pointer) {
    15  	panic("never called") // only here so swapper_unsafe.go compiles
    16  }