mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	 00bfd702dc
			
		
	
	
		00bfd702dc
		
	
	
	
	
		
			
			Disable the tests and generate an error if MC/DC is used on LLVM 19. The support will be ported separately, as it is substantially different on LLVM 19, and there are no plans to support both versions.
		
			
				
	
	
		
			34 lines
		
	
	
		
			922 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			922 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(coverage_attribute)]
 | |
| //@ edition: 2021
 | |
| //@ min-llvm-version: 18
 | |
| //@ ignore-llvm-version: 19 - 99
 | |
| //@ compile-flags: -Zcoverage-options=mcdc
 | |
| //@ llvm-cov-flags: --show-branches=count --show-mcdc
 | |
| 
 | |
| // Check that MC/DC instrumentation can gracefully handle conditions that
 | |
| // exceed LLVM's limit of 6 conditions per decision.
 | |
| //
 | |
| // (The limit is enforced in `compiler/rustc_mir_build/src/build/coverageinfo/mcdc.rs`.)
 | |
| 
 | |
| fn good() {
 | |
|     // With only 6 conditions, perform full MC/DC instrumentation.
 | |
|     let [a, b, c, d, e, f] = <[bool; 6]>::default();
 | |
|     if a && b && c && d && e && f {
 | |
|         core::hint::black_box("hello");
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn bad() {
 | |
|     // With 7 conditions, fall back to branch instrumentation only.
 | |
|     let [a, b, c, d, e, f, g] = <[bool; 7]>::default();
 | |
|     if a && b && c && d && e && f && g {
 | |
|         core::hint::black_box("hello");
 | |
|     }
 | |
| }
 | |
| 
 | |
| #[coverage(off)]
 | |
| fn main() {
 | |
|     good();
 | |
|     bad();
 | |
| }
 |