blob: b477a6869dd1af87e869275905a1c5b65b20f9c5 [file] [log] [blame]
; Check HWASan shadow mapping on Fuchsia.
; RUN: opt -passes=hwasan -S -mtriple=aarch64-unknown-fuchsia < %s | FileCheck %s
define i32 @test_load(i32* %a) sanitize_hwaddress {
; CHECK: %.hwasan.shadow = call i8* asm "", "=r,0"(i8* null)
entry:
%x = load i32, i32* %a, align 4
ret i32 %x
}