/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/codegen/issue75203.go
21 строка
460 B
Keith Randall
test/codegen: get rid of \s
31 мар 2026, 21:01
31 мар 2026, 21:01
d6492e2
Код
Авторство
О чём код?
// asmcheck // 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 codegen import "reflect" func f() reflect.Type { // amd64:`LEAQ type:\*int\(SB\)` // arm64:`MOVD \$type:\*int\(SB\)` return reflect.TypeFor[*int]() } func g() reflect.Type { // amd64:`LEAQ type:int\(SB\)` // arm64:`MOVD \$type:int\(SB\)` return reflect.TypeFor[int]() }