github.com/insionng/yougam@v0.0.0-20170714101924-2bc18d833463/libraries/klauspost/compress/snappy/asm_generic.go (about)

     1  //+build !amd64 noasm appengine
     2  
     3  // Copyright 2015, Klaus Post, see LICENSE for details.
     4  
     5  package snappy
     6  
     7  func init() {
     8  	useSSE42 = false
     9  }
    10  
    11  // matchLenSSE4 should never be called.
    12  func matchLenSSE4(a, b []byte, max int) int {
    13  	panic("no assembler")
    14  	return 0
    15  }