mirror of
https://github.com/golang/go.git
synced 2025-05-05 15:43:04 +00:00
cmd/compile: allow export/import OSLICE2ARRPTR
Updates #395 Fixes #45665 Change-Id: Iaf053c0439a573e9193d40942fbdb22ac3b4d3bb Reviewed-on: https://go-review.googlesource.com/c/go/+/312070 Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com> Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Go Bot <gobot@golang.org>
This commit is contained in:
parent
7735ec96c1
commit
5f1df260a9
@ -1677,7 +1677,7 @@ func (w *exportWriter) expr(n ir.Node) {
|
|||||||
w.op(ir.OEND)
|
w.op(ir.OEND)
|
||||||
}
|
}
|
||||||
|
|
||||||
case ir.OCONV, ir.OCONVIFACE, ir.OCONVNOP, ir.OBYTES2STR, ir.ORUNES2STR, ir.OSTR2BYTES, ir.OSTR2RUNES, ir.ORUNESTR:
|
case ir.OCONV, ir.OCONVIFACE, ir.OCONVNOP, ir.OBYTES2STR, ir.ORUNES2STR, ir.OSTR2BYTES, ir.OSTR2RUNES, ir.ORUNESTR, ir.OSLICE2ARRPTR:
|
||||||
n := n.(*ir.ConvExpr)
|
n := n.(*ir.ConvExpr)
|
||||||
if go117ExportTypes {
|
if go117ExportTypes {
|
||||||
w.op(n.Op())
|
w.op(n.Op())
|
||||||
|
@ -1262,7 +1262,7 @@ func (r *importReader) node() ir.Node {
|
|||||||
}
|
}
|
||||||
return n
|
return n
|
||||||
|
|
||||||
case ir.OCONV, ir.OCONVIFACE, ir.OCONVNOP, ir.OBYTES2STR, ir.ORUNES2STR, ir.OSTR2BYTES, ir.OSTR2RUNES, ir.ORUNESTR:
|
case ir.OCONV, ir.OCONVIFACE, ir.OCONVNOP, ir.OBYTES2STR, ir.ORUNES2STR, ir.OSTR2BYTES, ir.OSTR2RUNES, ir.ORUNESTR, ir.OSLICE2ARRPTR:
|
||||||
if !go117ExportTypes && op != ir.OCONV {
|
if !go117ExportTypes && op != ir.OCONV {
|
||||||
// unreachable - mapped to OCONV case by exporter
|
// unreachable - mapped to OCONV case by exporter
|
||||||
goto error
|
goto error
|
||||||
|
15
test/fixedbugs/issue45665.go
Normal file
15
test/fixedbugs/issue45665.go
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// compile
|
||||||
|
|
||||||
|
// Copyright 2021 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
Get([]string{"a", "b"})
|
||||||
|
}
|
||||||
|
|
||||||
|
func Get(ss []string) *[2]string {
|
||||||
|
return (*[2]string)(ss)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user