| // Copyright 2016 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. |
| // trim removes blocks with no code in them. |
| // These blocks were inserted to remove critical edges. |
| for _, b := range f.Blocks { |
| if b.Kind != BlockPlain || len(b.Values) != 0 || len(b.Preds) != 1 { |
| // TODO: handle len(b.Preds)>1 case. |
| // Splice b out of the graph. |
| for j, s := range pred.Succs { |
| for j, p := range succ.Preds { |
| for j := i; j < len(f.Blocks); j++ { |