mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-29 20:15:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			347 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			347 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ aux-build:nounwind.rs
 | |
| //@ compile-flags: -C no-prepopulate-passes -C panic=abort -C metadata=a
 | |
| //@ ignore-android
 | |
| 
 | |
| #![crate_type = "lib"]
 | |
| 
 | |
| extern crate nounwind;
 | |
| 
 | |
| #[no_mangle]
 | |
| pub fn foo() {
 | |
|     nounwind::bar();
 | |
|     // CHECK: @foo() unnamed_addr #0
 | |
|     // CHECK: @bar() unnamed_addr #0
 | |
|     // CHECK: attributes #0 = { {{.*}}nounwind{{.*}} }
 | |
| }
 | 
