mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +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
 | |
| }
 | 
