bolt/deps/llvm-18.1.8/llvm/test/Instrumentation/AddressSanitizer/twice.ll
2025-02-14 19:21:04 +01:00

8 lines
212 B
LLVM

; Check that the address sanitizer pass can be reused
; RUN: opt < %s -S -run-twice -passes=asan
define void @foo(ptr %b) nounwind uwtable sanitize_address {
entry:
store i64 0, ptr %b, align 1
ret void
}