[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Instrumentation / MemorySanitizer / origin-array.ll
blob228d686ad7f97560c7cd137b85b4f450963705fb
1 ; RUN: opt < %s -msan-check-access-address=0 -msan-track-origins=2 -S          \
2 ; RUN: -passes=msan 2>&1 | FileCheck %s
4 target datalayout = "e-m:e-i64:64-i128:128-n32:64-S128"
5 target triple = "aarch64-unknown-linux-gnu"
7 ; Check origin handling of array types.
9 define void @foo([2 x i64] %v, ptr %p) sanitize_memory {
10 entry:
11   store [2 x i64] %v, ptr %p, align 8
12   ret void
15 ; CHECK-LABEL: @foo
16 ; CHECK: [[PARAM:%[01-9a-z]+]] = load {{.*}} @__msan_param_tls
17 ; CHECK: [[ORIGIN:%[01-9a-z]+]] = load {{.*}} @__msan_param_origin_tls
19 ; CHECK: [[TMP1:%[01-9a-z]+]] = ptrtoint
20 ; CHECK: [[TMP2:%[01-9a-z]+]] = xor i64 [[TMP1]]
21 ; CHECK: [[TMP3:%[01-9a-z]+]] = inttoptr i64 [[TMP2]] to ptr
22 ; CHECK: store [2 x i64] [[PARAM]], ptr [[TMP3]]
24 ; CHECK: {{.*}} call i32 @__msan_chain_origin(i32 {{.*}}[[ORIGIN]])