/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/codegen/issue48054.go
31 строка
464 B
Michael Munday
test/codegen: fix package name for test case
08 сен 2021, 17:51
08 сен 2021, 17:51
8214257
Код
Авторство
О чём код?
// asmcheck // Copyright 2021 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 a(n string) bool { // arm64:"CBZ" if len(n) > 0 { return true } return false } func a2(n []int) bool { // arm64:"CBZ" if len(n) > 0 { return true } return false } func a3(n []int) bool { // amd64:"TESTQ" if len(n) < 1 { return true } return false }