/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue46720.go
15 строк
282 B
Cuong Manh Le
cmd/compile: allow ir.OSLICE2ARRPTR in mayCall
13 июн 2021, 08:50
13 июн 2021, 08:50
67b1b6a
Код
Авторство
О чём код?
// compile // 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 p func f() { nonce := make([]byte, 24) g((*[24]byte)(nonce)) } //go:noinline func g(*[24]byte) {}