-
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
Rollup of 11 pull requests #67091
Rollup of 11 pull requests #67091
Commits on Dec 3, 2019
-
Configuration menu - View commit details
-
Copy full SHA for b85d5f4 - Browse repository at this point
Copy the full SHA b85d5f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for dc1a428 - Browse repository at this point
Copy the full SHA dc1a428View commit details
Commits on Dec 4, 2019
-
Configuration menu - View commit details
-
Copy full SHA for b6b0fd9 - Browse repository at this point
Copy the full SHA b6b0fd9View commit details -
Configuration menu - View commit details
-
Copy full SHA for a8ec620 - Browse repository at this point
Copy the full SHA a8ec620View commit details -
SGX: Fix target linker used by bootstrap
Jethro Beekman committedDec 4, 2019 Configuration menu - View commit details
-
Copy full SHA for 22d9f20 - Browse repository at this point
Copy the full SHA 22d9f20View commit details -
Migrate to LLVM{Get,Set}ValueName2
The deprecated `LLVM{Get,Set}ValueName` only work with NUL-terminated strings, but the `2` variants use explicit lengths, which fits better with Rust strings and slices. We now use these in new helper functions `llvm::{get,set}_value_name` that convert to/from `&[u8]`.
Configuration menu - View commit details
-
Copy full SHA for 16d2178 - Browse repository at this point
Copy the full SHA 16d2178View commit details
Commits on Dec 5, 2019
-
Simplify {IoSlice, IoSliceMut}::advance examples and tests
Remove unnecessary calls to `std::mem::replace` and make variables immutable.
Configuration menu - View commit details
-
Copy full SHA for 92bc35f - Browse repository at this point
Copy the full SHA 92bc35fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8655ad5 - Browse repository at this point
Copy the full SHA 8655ad5View commit details -
Configuration menu - View commit details
-
Copy full SHA for e822235 - Browse repository at this point
Copy the full SHA e822235View commit details -
Configuration menu - View commit details
-
Copy full SHA for e5d50e3 - Browse repository at this point
Copy the full SHA e5d50e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5bd947 - Browse repository at this point
Copy the full SHA f5bd947View commit details
Commits on Dec 6, 2019
-
`give` no longer exists, `compute` is used to generate query results now.
Configuration menu - View commit details
-
Copy full SHA for 5ddfbc2 - Browse repository at this point
Copy the full SHA 5ddfbc2View commit details -
Configuration menu - View commit details
-
Copy full SHA for de255a9 - Browse repository at this point
Copy the full SHA de255a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 79f8764 - Browse repository at this point
Copy the full SHA 79f8764View commit details -
Rollup merge of rust-lang#66846 - gizmondo:master, r=michaelwoerister
Make try_mark_previous_green aware of cycles. Fixes rust-lang#61323 r? @michaelwoerister
Configuration menu - View commit details
-
Copy full SHA for 2a4f638 - Browse repository at this point
Copy the full SHA 2a4f638View commit details -
Rollup merge of rust-lang#66959 - GuillaumeGomez:cfg-duplicates, r=eddyb
Remove potential cfgs duplicates Fixes rust-lang#66921. Before going any further (the issue seems to be linked to metadata as far as I can tell). Do you think this is the good place to do it or should it be done before? r? @eddyb
Configuration menu - View commit details
-
Copy full SHA for afd9e95 - Browse repository at this point
Copy the full SHA afd9e95View commit details -
Rollup merge of rust-lang#66988 - osa1:issue66985, r=matthewjasper
Fix angle bracket formatting when dumping MIR debug vars Fixes rust-lang#66985
Configuration menu - View commit details
-
Copy full SHA for 7249af0 - Browse repository at this point
Copy the full SHA 7249af0View commit details -
Rollup merge of rust-lang#66998 - Wind-River:master_up, r=alexcrichton
Modified the testcases for VxWorks
Configuration menu - View commit details
-
Copy full SHA for cdbdb68 - Browse repository at this point
Copy the full SHA cdbdb68View commit details -
Rollup merge of rust-lang#67008 - ollie27:rustdoc_issue_61732, r=Centril
rustdoc: Add test for fixed issue rust-lang#61732 was almost certainly fixed by rust-lang#63400. Closes rust-lang#61732
Configuration menu - View commit details
-
Copy full SHA for 0df1609 - Browse repository at this point
Copy the full SHA 0df1609View commit details -
Rollup merge of rust-lang#67023 - jethrogb:jb/bootstrap-target-linker…
…, r=alexcrichton SGX: Fix target linker used by bootstrap Bootstrap, for some reason, overrides the target linker. This is not correct for x86_64-fortanix-unknown-sgx. Add such targets to the list of exceptions. r? @alexcrichton
Configuration menu - View commit details
-
Copy full SHA for fd4cec0 - Browse repository at this point
Copy the full SHA fd4cec0View commit details -
Rollup merge of rust-lang#67033 - cuviper:ValueName2, r=rkruppe
Migrate to LLVM{Get,Set}ValueName2 The deprecated `LLVM{Get,Set}ValueName` only work with NUL-terminated strings, but the `2` variants use explicit lengths, which fits better with Rust strings and slices. We now use these in new helper functions `llvm::{get,set}_value_name` that convert to/from `&[u8]`. Closes rust-lang#64223. r? @rkruppe
Configuration menu - View commit details
-
Copy full SHA for 0b471bf - Browse repository at this point
Copy the full SHA 0b471bfView commit details -
Rollup merge of rust-lang#67049 - tmiasko:io-slice-advance, r=rkruppe
Simplify {IoSlice, IoSliceMut}::advance examples and tests Remove unnecessary calls to `std::mem::replace` and make variables immutable.
Configuration menu - View commit details
-
Copy full SHA for d1397db - Browse repository at this point
Copy the full SHA d1397dbView commit details -
Rollup merge of rust-lang#67054 - RalfJung:set-discriminant-unreachab…
…le, r=oli-obk codegen "unreachable" for invalid SetDiscriminant Follow-up from rust-lang#66960. I also realized I don't understand our policy for using `abort` vs `unreachable`. AFAIK `abort` is safe to call and just aborts the process, while `unreachable` is UB. But sometimes we use both, like here https://github.com/rust-lang/rust/blob/d825e35ee8325146e6c175a4c61bcb645b347d5e/src/librustc_codegen_ssa/mir/block.rs#L827-L828 and here https://github.com/rust-lang/rust/blob/d825e35ee8325146e6c175a4c61bcb645b347d5e/src/librustc_codegen_ssa/mir/block.rs#L264-L265 The second case is even more confusing because that looks like an unreachable `return` to me, so why would we codegen a safe abort there? r? @eddyb Cc @oli-obk
Configuration menu - View commit details
-
Copy full SHA for c85284e - Browse repository at this point
Copy the full SHA c85284eView commit details -
Rollup merge of rust-lang#67081 - osa1:fix_query_type_docs, r=Dylan-DPC
Fix Query type docs `give` no longer exists, `compute` is used to generate query results now.
Configuration menu - View commit details
-
Copy full SHA for cc7c45f - Browse repository at this point
Copy the full SHA cc7c45fView commit details -
Rollup merge of rust-lang#67085 - reitermarkus:addr-parser, r=Mark-Si…
…mulacrum Remove boxed closures in address parser. Simplify address parser by removing unnecessary boxed closures. Also relevant for rust-lang/rfcs#2832.
Configuration menu - View commit details
-
Copy full SHA for 931be6c - Browse repository at this point
Copy the full SHA 931be6cView commit details