/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue23504.go
15 строк
284 B
Keith Randall
cmd/compile: reset branch prediction when deleting a branch
20 фев 2018, 03:56
20 фев 2018, 03:56
4313d77
Код
Авторство
О чём код?
// compile // Copyright 2018 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() { var B bool B2 := (B || B && !B) && !B B3 := B2 || B for (B3 || B2) && !B2 && B { } }