/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
go1.25.4
test/codegen/schedule.go
17 строк
309 B
Keith Randall
cmd/compile: schedule induction variable increments late
16 май 2025, 00:06
16 май 2025, 00:06
19f0577
Код
Авторство
О чём код?
// 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 func f(n int) int { r := 0 // arm64:-"MOVD\t R" // amd64:-"LEAQ","INCQ" for i := range n { r += i } return r }