-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #70582 - pnkfelix:update-llvm-to-fix-69841, r=cuviper
Fix #69841 by updating LLVM submodule. Fix #69841 by updating LLVM submodule. Includes regression test for issue 69841.
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
Submodule llvm-project
updated
2 files
+8 −2 | llvm/lib/Analysis/InstructionSimplify.cpp | |
+23 −4 | llvm/lib/Analysis/ValueTracking.cpp |
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,30 @@ | ||
// This is a regression test for issue rust-lang/rust#69841, which exposed an | ||
// LLVM bug which needed a fix to be backported. | ||
|
||
// run-pass | ||
|
||
fn main() { | ||
let buffer = [49u8, 10]; | ||
let mut a : u64 = 0; | ||
'read: loop { | ||
for c in &buffer { | ||
match c { | ||
48..=57 => { | ||
a*= 10; | ||
a+= *c as u64 - 48; | ||
} | ||
10 => { | ||
break 'read; | ||
} | ||
_ => { | ||
unsafe { std::hint::unreachable_unchecked() }; | ||
} | ||
} | ||
} | ||
} | ||
if a == 1 { | ||
println!("What did you expect?"); | ||
} else { | ||
panic!("this should be unreachable."); | ||
} | ||
} |