]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: added cheapexpr call to simplify operand of CONVIFACE
authorDavid Chase <drchase@google.com>
Fri, 24 Feb 2017 22:21:54 +0000 (17:21 -0500)
committerDavid Chase <drchase@google.com>
Sat, 25 Feb 2017 04:53:23 +0000 (04:53 +0000)
commitfebafe60d469ce129d4662d7f3550218fa548616
tree3d906cef3d424fcadae9207a45fe93668eceb463
parentac91a514ff521999b142901ad9714ca3f47f01a0
cmd/compile: added cheapexpr call to simplify operand of CONVIFACE

New special case for booleans and byte-sized integer types
converted to interfaces needs to ensure that the operand is
not too complex, if it were to appear in a parameter list
for example.

Added test, also increased the recursive node dump depth to
a level that was actually useful for an actual bug.

Fixes #19275.

Change-Id: If36ac3115edf439e886703f32d149ee0a46eb2a5
Reviewed-on: https://go-review.googlesource.com/37470
Run-TryBot: David Chase <drchase@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
src/cmd/compile/internal/gc/fmt.go
src/cmd/compile/internal/gc/walk.go
test/fixedbugs/issue19275.go [new file with mode: 0644]