mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	 518eb0d5dd
			
		
	
	
		518eb0d5dd
		
	
	
	
	
		
			
			We move the vectorcall ABI tests into their own file which is now only run on x86-64, while replacing them with rust-cold ABI tests so that aarch64 hosts continue to test an unstable ABI. A better solution might be cross-compiling or something but I really don't have time for that right now.
		
			
				
	
	
		
			20 lines
		
	
	
		
			980 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			980 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(rust_cold_cc)]
 | |
| 
 | |
| //@ is "$.index[?(@.name=='AbiRust')].inner.type_alias.type.function_pointer.header.abi" \"Rust\"
 | |
| pub type AbiRust = fn();
 | |
| 
 | |
| //@ is "$.index[?(@.name=='AbiC')].inner.type_alias.type.function_pointer.header.abi" '{"C": {"unwind": false}}'
 | |
| pub type AbiC = extern "C" fn();
 | |
| 
 | |
| //@ is "$.index[?(@.name=='AbiSystem')].inner.type_alias.type.function_pointer.header.abi" '{"System": {"unwind": false}}'
 | |
| pub type AbiSystem = extern "system" fn();
 | |
| 
 | |
| //@ is "$.index[?(@.name=='AbiCUnwind')].inner.type_alias.type.function_pointer.header.abi" '{"C": {"unwind": true}}'
 | |
| pub type AbiCUnwind = extern "C-unwind" fn();
 | |
| 
 | |
| //@ is "$.index[?(@.name=='AbiSystemUnwind')].inner.type_alias.type.function_pointer.header.abi" '{"System": {"unwind": true}}'
 | |
| pub type AbiSystemUnwind = extern "system-unwind" fn();
 | |
| 
 | |
| //@ is "$.index[?(@.name=='AbiRustCold')].inner.type_alias.type.function_pointer.header.abi.Other" '"\"rust-cold\""'
 | |
| pub type AbiRustCold = extern "rust-cold" fn();
 |