Skip to content

Commit

Permalink
Test that NRVO elides the call to memcpy
Browse files Browse the repository at this point in the history
  • Loading branch information
ecstatic-morse committed May 17, 2020
1 parent 1deaaa6 commit 856cd66
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/test/codegen/nrvo.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// 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
}

0 comments on commit 856cd66

Please sign in to comment.