mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
11 lines
179 B
Rust
11 lines
179 B
Rust
|
//@ compile-flags: -O
|
||
|
|
||
|
#![crate_type = "lib"]
|
||
|
|
||
|
// CHECK-LABEL: @copy_to_vec
|
||
|
#[no_mangle]
|
||
|
fn copy_to_vec(s: &[u64]) -> Vec<u64> {
|
||
|
s.to_vec()
|
||
|
// CHECK: call void @llvm.memcpy
|
||
|
}
|