mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			237 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			237 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //
 | |
| // no-system-llvm
 | |
| // compile-flags: -O
 | |
| #![crate_type="lib"]
 | |
| 
 | |
| #[no_mangle]
 | |
| pub fn alloc_test(data: u32) {
 | |
|     // CHECK-LABEL: @alloc_test
 | |
|     // CHECK-NEXT: start:
 | |
|     // CHECK-NEXT: ret void
 | |
|     let x = Box::new(data);
 | |
|     drop(x);
 | |
| }
 | 
