mirror of
https://github.com/golang/go
synced 2024-11-06 00:26:11 -07:00
4313d7767d
When we go from a branch block to a plain block, reset the branch prediction bit. Downstream passes asssume that if the branch prediction is set, then the block has 2 successors. Fixes #23504 Change-Id: I2898ec002228b2e34fe80ce420c6939201c0a5aa Reviewed-on: https://go-review.googlesource.com/88955 Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
16 lines
284 B
Go
16 lines
284 B
Go
// 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 {
|
|
}
|
|
}
|