In the previous line number CL the NewValue\d? functions took
a line number argument but neglected to set the Line field on
the value struct. Fix that.
Change-Id: I53c79ff93703f66f5f0266178c94803719ae2074
Reviewed-on: https://go-review.googlesource.com/11054
Reviewed-by: Keith Randall <khr@golang.org>
                Type:  t,
                Aux:   aux,
                Block: b,
+               Line:  line,
        }
        v.Args = v.argstorage[:0]
        b.Values = append(b.Values, v)
                Type:  t,
                Aux:   aux,
                Block: b,
+               Line:  line,
        }
        v.Args = v.argstorage[:1]
        v.Args[0] = arg
                Op:    op,
                Type:  t,
                Block: b,
+               Line:  line,
        }
        v.Args = v.argstorage[:2]
        v.Args[0] = arg0
                Op:    op,
                Type:  t,
                Block: b,
+               Line:  line,
        }
        v.Args = []*Value{arg0, arg1, arg2}
        b.Values = append(b.Values, v)