Commit ea5cd686 authored by Michael Matloob's avatar Michael Matloob Committed by Michael Matloob

[dev.ssa] cmd/compile/internal/gc: fix call to newValue1

Change-Id: I235a759e4688358adc088cf5a80f8ce7ad12d2f2
Reviewed-on: https://go-review.googlesource.com/11093Reviewed-by: default avatarKeith Randall <khr@golang.org>
parent 3a0df1f8
...@@ -381,7 +381,7 @@ func (s *state) expr(n *Node) *ssa.Value { ...@@ -381,7 +381,7 @@ func (s *state) expr(n *Node) *ssa.Value {
} }
case OCONVNOP: case OCONVNOP:
x := s.expr(n.Left) x := s.expr(n.Left)
return s.newValue1(ssa.OpConvNop, n.Type, nil, x) return s.newValue1(ssa.OpConvNop, n.Type, x)
// binary ops // binary ops
case OLT: case OLT:
......
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