Skip to content
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

Automatic Rustup #4111

Merged
merged 19 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
2b8e73a
Auto merge of #134604 - RalfJung:miri-sync, r=RalfJung
bors Dec 21, 2024
6b4e2c7
Auto merge of #134501 - lcnr:member-constraints-yeet, r=oli-obk
bors Dec 21, 2024
9c7674d
Auto merge of #134505 - jieyouxu:boop-compiler-cc, r=clubby789,jieyouxu
bors Dec 21, 2024
2f1f0b8
Auto merge of #134268 - lqd:polonius-next, r=jackh726
bors Dec 21, 2024
cc5cbb0
Auto merge of #130733 - okaneco:is_ascii, r=scottmcm
bors Dec 22, 2024
5a3169d
Auto merge of #134326 - scottmcm:slice-drop-shim-ptrmetadata, r=saethlin
bors Dec 22, 2024
6f96f2b
Auto merge of #131193 - EFanZh:asserts-vec-len, r=the8472
bors Dec 22, 2024
2d148a9
Auto merge of #134465 - lcnr:type-verifier, r=compiler-errors
bors Dec 23, 2024
17297cd
Auto merge of #134608 - DianQK:disable-93775, r=jieyouxu
bors Dec 23, 2024
b89ef6d
Auto merge of #134405 - rmehri01:x-completions, r=onur-ozkan
bors Dec 23, 2024
da9ce2d
Auto merge of #134513 - fudancoder:master, r=jieyouxu
bors Dec 24, 2024
0c1f85b
Auto merge of #134724 - onur-ozkan:type-improvements, r=jieyouxu
bors Dec 24, 2024
6cf9d8e
Auto merge of #134703 - poliorcetics:ab/push-ovsylkzsoxku, r=Guillaum…
bors Dec 25, 2024
49dc1a9
Auto merge of #134784 - RalfJung:miri-sync, r=RalfJung
bors Dec 26, 2024
825ea5c
Auto merge of #134774 - jyn514:rustc-dev-short-backtraces, r=jieyouxu
bors Dec 26, 2024
272cb41
Auto merge of #134788 - flip1995:clippy-subtree-update, r=matthiaskrgr
bors Dec 26, 2024
bdf4967
Preparing for merge from rustc
Dec 27, 2024
b69648d
Merge from rustc
Dec 27, 2024
0308d17
clippy
RalfJung Dec 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion miri-script/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ impl Command {
.map(|path| path.into_os_string().into_string().unwrap())
.collect()
} else {
benches.into_iter().map(Into::into).collect()
benches.into_iter().collect()
};
let target_flag = if let Some(target) = target {
let mut flag = OsString::from("--target=");
Expand Down
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13170cd787cb733ed24842ee825bcbd98dc01476
917bfa78478cbcc77406e5ea37b24c3eedefacf4
8 changes: 4 additions & 4 deletions src/concurrency/cpu_affinity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@ impl CpuAffinityMask {
let chunk = self.0[start..].first_chunk_mut::<4>().unwrap();
let offset = cpu % 32;
*chunk = match target.options.endian {
Endian::Little => (u32::from_le_bytes(*chunk) | 1 << offset).to_le_bytes(),
Endian::Big => (u32::from_be_bytes(*chunk) | 1 << offset).to_be_bytes(),
Endian::Little => (u32::from_le_bytes(*chunk) | (1 << offset)).to_le_bytes(),
Endian::Big => (u32::from_be_bytes(*chunk) | (1 << offset)).to_be_bytes(),
};
}
8 => {
let start = cpu / 64 * 8; // first byte of the correct u64
let chunk = self.0[start..].first_chunk_mut::<8>().unwrap();
let offset = cpu % 64;
*chunk = match target.options.endian {
Endian::Little => (u64::from_le_bytes(*chunk) | 1 << offset).to_le_bytes(),
Endian::Big => (u64::from_be_bytes(*chunk) | 1 << offset).to_be_bytes(),
Endian::Little => (u64::from_le_bytes(*chunk) | (1 << offset)).to_le_bytes(),
Endian::Big => (u64::from_be_bytes(*chunk) | (1 << offset)).to_be_bytes(),
};
}
other => bug!("chunk size not supported: {other}"),
Expand Down
2 changes: 1 addition & 1 deletion src/shims/windows/handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ impl Handle {

// packs the data into the lower `data_size` bits
// and packs the discriminant right above the data
discriminant << data_size | data
(discriminant << data_size) | data
}

fn new(discriminant: u32, data: u32) -> Option<Self> {
Expand Down
Loading