-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gccgo: ICE in write_specific_type_functions on anon imported struct type #33866
Labels
Milestone
Comments
Change https://golang.org/cl/191961 mentions this issue: |
gopherbot
pushed a commit
to protocolbuffers/protobuf-go
that referenced
this issue
Aug 27, 2019
Returning an anonymous struct is tickling a gccgo bug: golang/go#33866 Change to a named type. We could make the type unexpoerted, but this is an internal package anyway so leave it exported for general style cleanliness. Change-Id: Idf33f1e354c0e07066ab68640308af1498a01447 Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/191960 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
Change https://golang.org/cl/193261 mentions this issue: |
gopherbot
pushed a commit
that referenced
this issue
Sep 6, 2019
Test with some code that triggered a compilation error bug in gccgo. Updates #33866. Change-Id: Ib2f226bbbebbfae33b41037438fe34dc5f2ad034 Reviewed-on: https://go-review.googlesource.com/c/go/+/193261 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
asiekierka
pushed a commit
to WonderfulToolchain/gcc-ia16
that referenced
this issue
May 16, 2022
Change Named_object::get_backend to ignore aliases when creating type descriptors for types, to be consistent with Type::needs_specific_type_functions and the Specific_type_functions traversal class. For example, when compiling a package that creates an alias to an an externally defined type, e.g. import "foo" type MyFoo = foo.Foo it makes sense to skip the alias (not try to generate type specific functions for it) and let the normal mechanisms take care of the alias target, depending on whether the target is defined locally or defined elsewhere. Testcase for this problen can be found in CL 193261. Fixes golang/go#33866. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/191961 From-SVN: r275651
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
What version of Go are you using (
go version
)?Using gccgo tip, linux/amd64.
Does this issue reproduce with the latest release?
Yes.
What did you do?
Build these two packages:
Package a.go:
Package b.go:
What did you expect to see?
Clean build.
What did you see instead?
Compiling b.go triggers this assert:
The type triggering the assert is the anonymous struct that forms the type of the "out" param on the builder method defined in a.go. It appears that when compiling b.go the walk used to find types that need type-specific functions isn't discovering this type.
The text was updated successfully, but these errors were encountered: