-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
39 additions
and
5 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// compile-flags: -C opt-level=z --edition=2021 | ||
// ignore-debug | ||
|
||
#![crate_type = "lib"] | ||
|
||
// From <https://github.com/rust-lang/rust/issues/115463> | ||
|
||
// CHECK-LABEL: @read_up_to_8( | ||
#[no_mangle] | ||
pub fn read_up_to_8(buf: &[u8]) -> u64 { | ||
// CHECK-NOT: unwrap_failed | ||
if buf.len() < 4 { | ||
// actual instance has more code. | ||
return 0; | ||
} | ||
let lo = u32::from_le_bytes(buf[..4].try_into().unwrap()) as u64; | ||
let hi = u32::from_le_bytes(buf[buf.len() - 4..][..4].try_into().unwrap()) as u64; | ||
lo | (hi << 8 * (buf.len() as u64 - 4)) | ||
} | ||
|
||
// CHECK-LABEL: @checking_unwrap_expectation( | ||
#[no_mangle] | ||
pub fn checking_unwrap_expectation(buf: &[u8]) -> &[u8; 4] { | ||
// CHECK: call void @_ZN4core6result13unwrap_failed17h | ||
buf.try_into().unwrap() | ||
} |