aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjCXX/address-safety-attr.mm
blob: 1b6f0e807afd6ec76d842f52e3fef80df614145e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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