/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/codegen/issue60673.go
18 строк
358 B
Keith Randall
test/codegen: get rid of \s
31 мар 2026, 21:01
31 мар 2026, 21:01
d6492e2
Код
Авторство
О чём код?
// asmcheck // Copyright 2023 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 //go:noinline func f(x int32) { } func g(p *int32) { // argument marshaling code should live at line 17, not line 15. x := *p // 386: `MOVL [A-Z]+, \(SP\)` f(x) }