Commit 85066acc authored by OlgaVlPetrova's avatar OlgaVlPetrova Committed by Ian Lance Taylor

src/cmd/compile/internal/ssa: replace `s = s + x' => 's += x'.

Change-Id: I1f399a8a0aa200bfda01f97f920b1345e59956ba
Reviewed-on: https://go-review.googlesource.com/c/142057
Run-TryBot: Iskander Sharipov <iskander.sharipov@intel.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent c3208842
......@@ -98,9 +98,9 @@ func (t SparseTree) treestructure1(b *Block, i int) string {
s := "\n" + strings.Repeat("\t", i) + b.String() + "->["
for i, e := range b.Succs {
if i > 0 {
s = s + ","
s += ","
}
s = s + e.b.String()
s += e.b.String()
}
s += "]"
if c0 := t[b.ID].child; c0 != nil {
......
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