mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
Update to LLVM 17.0.0
This rebases our LLVM fork to 17.0.0. Fixes #115681.
This commit is contained in:
parent
de68911f4a
commit
531830cecd
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -33,7 +33,7 @@
|
||||
[submodule "src/llvm-project"]
|
||||
path = src/llvm-project
|
||||
url = https://github.com/rust-lang/llvm-project.git
|
||||
branch = rustc/17.0-2023-07-29
|
||||
branch = rustc/17.0-2023-09-19
|
||||
shallow = true
|
||||
[submodule "src/doc/embedded-book"]
|
||||
path = src/doc/embedded-book
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 0537f6354cffe546cbf47f6dc9c7f82e49e86cfb
|
||||
Subproject commit 42263494d29febc26d3c1ebdaa7b63677573ec47
|
32
tests/ui/match/issue-115681.rs
Normal file
32
tests/ui/match/issue-115681.rs
Normal file
@ -0,0 +1,32 @@
|
||||
// run-pass
|
||||
// compile-flags: -C opt-level=1
|
||||
|
||||
// Make sure LLVM does not miscompile this match.
|
||||
fn main() {
|
||||
enum Bits {
|
||||
None = 0x00,
|
||||
Low = 0x40,
|
||||
High = 0x80,
|
||||
Both = 0xC0,
|
||||
}
|
||||
|
||||
let value = Box::new(0x40u8);
|
||||
let mut out = Box::new(0u8);
|
||||
|
||||
let bits = match *value {
|
||||
0x00 => Bits::None,
|
||||
0x40 => Bits::Low,
|
||||
0x80 => Bits::High,
|
||||
0xC0 => Bits::Both,
|
||||
_ => return,
|
||||
};
|
||||
|
||||
match bits {
|
||||
Bits::None | Bits::Low => {
|
||||
*out = 1;
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
|
||||
assert_eq!(*out, 1);
|
||||
}
|
Loading…
Reference in New Issue
Block a user