f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
21 lines
582 B
Text
21 lines
582 B
Text
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck -check-prefix=WITHOUT %s
|
|
// RUN: %clang_cc1 -emit-llvm -o - %s -fsanitize=address | FileCheck -check-prefix=ASAN %s
|
|
|
|
@interface MyClass
|
|
+ (int) addressSafety:(int*)a;
|
|
@end
|
|
|
|
@implementation MyClass
|
|
|
|
// WITHOUT: +[MyClass load]{{.*}}#0
|
|
// ASAN: +[MyClass load]{{.*}}#0
|
|
+(void) load { }
|
|
|
|
// WITHOUT: +[MyClass addressSafety:]{{.*}}#0
|
|
// ASAN: +[MyClass addressSafety:]{{.*}}#0
|
|
+ (int) addressSafety:(int*)a { return *a; }
|
|
|
|
@end
|
|
|
|
// ASAN: attributes #0 = {{.*}}sanitize_address
|
|
// WITHOUT-NOT: attributes #0 = {{.*}}sanitize_address
|