/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue31915.go
23 строки
358 B
Cherry Zhang
cmd/compile: correct the argument type in SETXXstore -> MOVBstore rules on AMD64
13 май 2019, 22:04
13 май 2019, 22:04
23f3ea8
Код
Авторство
О чём код?
// compile -d=ssa/check/on // Copyright 2019 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() func g() { var a []int var b bool for { b = (b && b) != (b && b) for b && b == b || true { f() _ = a[0] } _ = &b a = []int{} } }