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
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)
15 %1 = getelementptr inbounds %struct.key_t, ptr %key, i64 0, i32 1, i64 0
17 call void @test1(ptr %1) #3
21 ; Function Attrs: nounwind argmemonly
22 declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i1) #1
24 declare void @test1(ptr) #2