/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue74836.go
17 строк
271 B
Keith Randall
cmd/compile: enforce that locals are always accessed with SP base register
01 авг 2025, 18:57
01 авг 2025, 18:57
eef5f8d
Код
Авторство
О чём код?
// compile // Copyright 2025 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 main type T struct { a [20]int } func f(x [4]int) { g(T{}, x) } func g(t T, x [4]int)