forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			459 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			459 B
		
	
	
	
		
			C++
		
	
	
	
// RUN: %clang_cc1 -E -fsanitize=address %s -o - | FileCheck --check-prefix=CHECK-ASAN %s
 | 
						|
// RUN: %clang_cc1 -E -fsanitize=kernel-address %s -o - | FileCheck --check-prefix=CHECK-ASAN %s
 | 
						|
// RUN: %clang_cc1 -E  %s -o - | FileCheck --check-prefix=CHECK-NO-ASAN %s
 | 
						|
 | 
						|
#if __has_feature(address_sanitizer)
 | 
						|
int AddressSanitizerEnabled();
 | 
						|
#else
 | 
						|
int AddressSanitizerDisabled();
 | 
						|
#endif
 | 
						|
 | 
						|
// CHECK-ASAN: AddressSanitizerEnabled
 | 
						|
// CHECK-NO-ASAN: AddressSanitizerDisabled
 |