/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/codegen/issue69635.go
13 строк
304 B
Keith Randall
test/codegen: replace commas with spaces between regexps
31 мар 2026, 21:01
31 мар 2026, 21:01
d5b6d58
Код
Авторство
О чём код?
// asmcheck // Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package codegen func calc(a uint64) uint64 { v := a >> 20 & 0x7f // amd64: `SHRQ \$17, AX$` `ANDL \$1016, AX$` return v << 3 }