rust/tests/codegen/issues/issue-115385-llvm-jump-threading.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
790 B
Rust
Raw Normal View History

//@ compile-flags: -O -Ccodegen-units=1
#![crate_type = "lib"]
#[repr(i64)]
pub enum Boolean {
False = 0,
True = 1,
}
impl Clone for Boolean {
fn clone(&self) -> Self {
*self
}
}
impl Copy for Boolean {}
extern "C" {
fn set_value(foo: *mut i64);
2023-09-06 22:13:56 +00:00
fn bar();
}
pub fn foo(x: bool) {
let mut foo = core::mem::MaybeUninit::<i64>::uninit();
unsafe {
set_value(foo.as_mut_ptr());
}
if x {
let l1 = unsafe { *foo.as_mut_ptr().cast::<Boolean>() };
if matches!(l1, Boolean::False) {
unsafe {
*foo.as_mut_ptr() = 0;
}
}
}
let l2 = unsafe { *foo.as_mut_ptr() };
if l2 == 2 {
// CHECK: call void @bar
2023-09-06 22:13:56 +00:00
unsafe {
bar();
}
}
}