[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:
Michael Matloob 2015-06-14 10:27:50 -07:00 committed by Michael Matloob
parent 3a0df1f82a
commit ea5cd68646
1 changed files with 1 additions and 1 deletions

View File

@ -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: