add codegen test for #36010

This commit is contained in:
Lzu Tao 2024-05-20 21:50:31 +00:00
parent 5f527eb562
commit 95740fbfed
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
#![crate_type = "lib"]
//@ compile-flags: -O
use std::mem;
fn foo<T>(a: &mut T, b: T) -> bool {
let b = Some(mem::replace(a, b));
let ret = b.is_some();
mem::forget(b);
return ret
}
// CHECK-LABEL: @foo_u32
// CHECK: store i32
// CHECK-NEXT: ret i1
#[no_mangle]
pub fn foo_u32(a: &mut u32, b: u32) -> bool {
foo(a, b)
}
// CHECK-LABEL: @foo_box
// CHECK: store ptr
// CHECK-NEXT: ret i1
#[no_mangle]
pub fn foo_box(a: &mut Box<u32>, b: Box<u32>) -> bool {
foo(a, b)
}