-
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
Fix unique pointers occuring in unreachable blocks #3824
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
It didn't take alignment into account. Fixes rust-lang#3656.
DebugFlag is conditionally exported by LLVM in llvm/Support/Debug.h in-between an #ifndef NDEBUG block; RustWrapper should not unconditionally use it. This closes rust-lang#3701. Signed-off-by: Luca Bruno <[email protected]>
Parsing gpg output for signature verification is not recommended, as it can break easily (and doesn't work with i18n). This patch makes use of gpgv, as suggested by gpg authors: http://lists.gnupg.org/pipermail/gnupg-users/2004-August/023141.html This closes rust-lang#3762. Signed-off-by: Luca Bruno <[email protected]>
Also some work towards rust-lang#3521 Closes rust-lang#2428
Along the way, convert from dvec-of-dvec representation to track loans in scope to just a single flattened list. It's more convenient. Fixes rust-lang#3765. r+ pcwalton.
Previous commits fix the issue. Closes rust-lang#3668
Instead, replace with re_static. This was causing ty::subst to fail when called from trans::type_of::type_of. Already discussed with nmatsakis and it's a small change, so no review. Closes rust-lang#3447
rustc: fix size computation of structs for the FFI
libcore: add a str::with_capacity to match the fn in vec
Fix rust-lang#3701: rustllvm conditional build
Use gpgv for signature verification in cargo
This also involves removing references to the old long-form closure syntax, which pcwalton alleges is deprecated and which was never updated for the new forms, e.g. `@fn() {}` is illegal.
…::expect Superficial change, no review.
This reenables valgrinding of the compiler and prints a message when the user _is_ valgrinding
`[int]/5` -> `[int * 5]`
RalfJung
pushed a commit
to RalfJung/rust
that referenced
this pull request
Aug 18, 2024
Set EINVAL for epoll_wait maxevent value 0 Fixes rust-lang#3821
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #3822.