blob: fddb0d1fb3c8ce5733f7a792387af7bb26d06a61 [file] [log] [blame]
// compile-flags: -O
#![crate_type = "lib"]
// Ensure that we do not call `memcpy` for the following function.
// `memset` and `init` should be called directly on the return pointer.
#[no_mangle]
pub fn nrvo(init: fn(&mut [u8; 4096])) -> [u8; 4096] {
// CHECK-LABEL: nrvo
// CHECK: @llvm.memset
// CHECK-NOT: @llvm.memcpy
// CHECK: ret
// CHECK-EMPTY
let mut buf = [0; 4096];
init(&mut buf);
buf
}