diff --git a/llvm/test/Instrumentation/HWAddressSanitizer/musttail.ll b/llvm/test/Instrumentation/HWAddressSanitizer/musttail.ll new file mode 100644 --- /dev/null +++ b/llvm/test/Instrumentation/HWAddressSanitizer/musttail.ll @@ -0,0 +1,23 @@ +; RUN: opt -S -passes=hwasan -hwasan-use-stack-safety=0 %s -o - + +target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" +target triple = "aarch64-arm-unknown-eabi" + +define dso_local noundef i32 @_Z3bari(i32 noundef %0) sanitize_hwaddress { + %2 = alloca i32, align 4 + store i32 %0, i32* %2, align 4 + %3 = load i32, i32* %2, align 4 + ret i32 %3 +} + +define dso_local noundef i32 @_Z3fooi(i32 noundef %0) sanitize_hwaddress { + %2 = alloca i32, align 4 + %3 = alloca i32, align 4 + store i32 %0, i32* %2, align 4 + store volatile i32 5, i32* %3, align 4 + %4 = load i32, i32* %2, align 4 + %5 = load volatile i32, i32* %3, align 4 + %6 = add nsw i32 %4, %5 + %7 = musttail call noundef i32 @_Z3bari(i32 noundef %6) + ret i32 %7 +}