mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			403 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			403 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ compile-flags: -Copt-level=3
 | |
| #![crate_type = "lib"]
 | |
| 
 | |
| #[no_mangle]
 | |
| pub fn test_assert(x: bool) {
 | |
|     assert!(x);
 | |
| }
 | |
| 
 | |
| // check that assert! emits branch weights
 | |
| 
 | |
| // CHECK-LABEL: @test_assert(
 | |
| // CHECK: br i1 %x, label %bb2, label %bb1, !prof ![[NUM:[0-9]+]]
 | |
| // CHECK: bb1:
 | |
| // CHECK: panic
 | |
| // CHECK: bb2:
 | |
| // CHECK: ret void
 | |
| // CHECK: ![[NUM]] = !{!"branch_weights", {{(!"expected", )?}}i32 2000, i32 1}
 | 
