This file is indexed.

/usr/share/gocode/src/github.com/klauspost/compress/snappy/asm_generic.go is in golang-github-klauspost-compress-dev 1.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//+build !amd64 noasm appengine

// Copyright 2015, Klaus Post, see LICENSE for details.

package snappy

func init() {
	useSSE42 = false
}

// matchLenSSE4 should never be called.
func matchLenSSE4(a, b []byte, max int) int {
	panic("no assembler")
	return 0
}