[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / BPF / fi_ri.ll
blob9de27b7c0fef8d17e0bccf9fcaa5e3c85cc24b3c
1 ; RUN: llc < %s -march=bpf | FileCheck %s
3 %struct.key_t = type { i32, [16 x i8] }
5 ; Function Attrs: nounwind uwtable
6 define i32 @test() #0 {
7   %key = alloca %struct.key_t, align 4
8 ; CHECK: r1 = 0
9 ; CHECK: *(u32 *)(r10 - 8) = r1
10 ; CHECK: *(u64 *)(r10 - 16) = r1
11 ; CHECK: *(u64 *)(r10 - 24) = r1
12   call void @llvm.memset.p0.i64(ptr align 4 %key, i8 0, i64 20, i1 false)
13 ; CHECK: r1 = r10
14 ; CHECK: r1 += -20
15   %1 = getelementptr inbounds %struct.key_t, ptr %key, i64 0, i32 1, i64 0
16 ; CHECK: call test1
17   call void @test1(ptr %1) #3
18   ret i32 0
21 ; Function Attrs: nounwind argmemonly
22 declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i1) #1
24 declare void @test1(ptr) #2