Commit 4313d776 authored by Keith Randall's avatar Keith Randall Committed by Keith Randall

cmd/compile: reset branch prediction when deleting a branch

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/88955Reviewed-by: 's avatarJosh Bleecher Snyder <josharian@gmail.com>
parent 252ee909
......@@ -102,7 +102,7 @@ func checkFunc(f *Func) {
f.Fatalf("plain/dead block %s has a control value", b)
}
}
if len(b.Succs) > 2 && b.Likely != BranchUnknown {
if len(b.Succs) != 2 && b.Likely != BranchUnknown {
f.Fatalf("likeliness prediction %d for block %s with %d successors", b.Likely, b, len(b.Succs))
}
......
......@@ -92,6 +92,7 @@ func fuseBlockIf(b *Block) bool {
b.removeEdge(1)
}
b.Kind = BlockPlain
b.Likely = BranchUnknown
b.SetControl(nil)
// Trash the empty blocks s0 & s1.
......
// 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 {
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment