[Clang] Deprecate __is_referenceable (#123185)
[llvm-project.git] / llvm / test / Instrumentation / HWAddressSanitizer / pgo-opt-out-no-ps.ll
blobf75042b1a15801e44247d7c38a2e5c072de55ae6
1 ; RUN: opt < %s -passes='require<profile-summary>,hwasan' -S                                      | FileCheck %s --check-prefix=FULL
2 ; RUN: opt < %s -passes='require<profile-summary>,hwasan' -S -hwasan-percentile-cutoff-hot=990000 | FileCheck %s --check-prefix=SELSAN
4 ; FULL: @not_sanitized
5 ; FULL-NEXT: %x = alloca i8, i64 4
6 ; FULL: @sanitized_no_ps
7 ; FULL-NEXT: @__hwasan_tls
9 ; SELSAN: @not_sanitized
10 ; SELSAN-NEXT: %x = alloca i8, i64 4
11 ; SELSAN: @sanitized_no_ps
12 ; SELSAN-NEXT: @__hwasan_tls
14 declare void @use(ptr)
16 define void @not_sanitized() {
17   %x = alloca i8, i64 4
18   call void @use(ptr %x)
19   ret void
20  }
22 define void @sanitized_no_ps() sanitize_hwaddress {
23   %x = alloca i8, i64 4
24   call void @use(ptr %x)
25   ret void
26  }