-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
alias analysis pass in rustc #408
Milestone
Comments
ghost
assigned marijnh
Jun 2, 2011
First cut of this landed in 4bd5f83 |
A more complete implementation was added in beda82d |
arielb1
pushed a commit
to arielb1/rust
that referenced
this issue
Apr 10, 2015
RFC rust-lang#385 is currently active
keeperofdakeys
pushed a commit
to keeperofdakeys/rust
that referenced
this issue
Dec 12, 2017
add MSG_NOSIGNAL (linux, android) see rust-lang#36426
dlrobertson
pushed a commit
to dlrobertson/rust
that referenced
this issue
Nov 29, 2018
Improve Introduction
Aaron1011
pushed a commit
to Aaron1011/rust
that referenced
this issue
Oct 26, 2020
Bumps [gimli](https://github.com/gimli-rs/gimli) from `a5f5b72` to `f30aeaa`. - [Release notes](https://github.com/gimli-rs/gimli/releases) - [Commits](gimli-rs/gimli@a5f5b72...f30aeaa) Signed-off-by: dependabot[bot] <[email protected]>
ZuseZ4
pushed a commit
to EnzymeAD/rust
that referenced
this issue
Mar 7, 2023
GuillaumeGomez
pushed a commit
to GuillaumeGomez/rust
that referenced
this issue
Feb 21, 2024
…rsion Update intrinsics conversion
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently we permit forming aliases in ways that are not safe: aliasing a mutable cell within a non-pinned box, doubly aliasing mutable values, etc. We need a pass which prohibits these sorts of things (as well as, er, a principled enumeration of which types of aliasing are bad).
The text was updated successfully, but these errors were encountered: