mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
462 B
Rust
13 lines
462 B
Rust
// compile-flags: -C no-prepopulate-passes -Zmir-enable-passes=+DestinationPropagation,-CopyProp
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
type T = [u8; 256];
|
|
|
|
#[no_mangle]
|
|
pub fn f(a: T, b: fn(_: T, _: T)) {
|
|
// CHECK: call void @llvm.memcpy.{{.*}}({{i8\*|ptr}} align 1 %{{.*}}, {{i8\*|ptr}} align 1 %{{.*}}, {{.*}} 256, i1 false)
|
|
// CHECK-NOT: call void @llvm.memcpy.{{.*}}({{i8\*|ptr}} align 1 %{{.*}}, {{i8\*|ptr}} align 1 %{{.*}}, {{.*}} 256, i1 false)
|
|
b(a, a)
|
|
}
|