xref: /llvm-project/llvm/test/Instrumentation/AddressSanitizer/twice.ll (revision 855fe35064674c4601ea9c659a015cacdcec9f63)
1; Check that the address sanitizer pass can be reused
2; RUN: opt < %s -S -run-twice -passes=asan
3
4define void @foo(ptr %b) nounwind uwtable sanitize_address {
5  entry:
6  store i64 0, ptr %b, align 1
7  ret void
8}
9