mirror of https://github.com/golang/go.git
[dev.ssa] cmd/compile/internal/gc: fix call to newValue1
Change-Id: I235a759e4688358adc088cf5a80f8ce7ad12d2f2 Reviewed-on: https://go-review.googlesource.com/11093 Reviewed-by: Keith Randall <khr@golang.org>
This commit is contained in:
parent
3a0df1f82a
commit
ea5cd68646
|
|
@ -381,7 +381,7 @@ func (s *state) expr(n *Node) *ssa.Value {
|
|||
}
|
||||
case OCONVNOP:
|
||||
x := s.expr(n.Left)
|
||||
return s.newValue1(ssa.OpConvNop, n.Type, nil, x)
|
||||
return s.newValue1(ssa.OpConvNop, n.Type, x)
|
||||
|
||||
// binary ops
|
||||
case OLT:
|
||||
|
|
|
|||
Loading…
Reference in New Issue