-
Notifications
You must be signed in to change notification settings - Fork 698
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
Rewrite is_unsized
as a fix-point analysis
#768
Labels
Comments
6 tasks
fitzgen
changed the title
Rewrite
Rewrite Sep 8, 2017
is_unsized
as either a graph traversal or fix-point analysisis_unsized
as a fix-point analysis
fitzgen
added a commit
to fitzgen/rust-bindgen
that referenced
this issue
Oct 25, 2017
This fixes a couple bugs where we weren't properly adding an `_address` byte. It also helps pave the way for computing implicit fields (such as padding, `_address`, vtable pointers, etc) in its own pass, before codegen. Fixes rust-lang#768
fitzgen
added a commit
to fitzgen/rust-bindgen
that referenced
this issue
Oct 25, 2017
This fixes a couple bugs where we weren't properly adding an `_address` byte. It also helps pave the way for computing implicit fields (such as padding, `_address`, vtable pointers, etc) in its own pass, before codegen. Fixes rust-lang#768
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See #536 for details.
This is very similar to when we re-wrote
has_destructor
to a fixed-point analysis, and that PR could be used to guide fixing this issue: #850The text was updated successfully, but these errors were encountered: