22 lines · plain
1; RUN: llc < %s -mtriple=arm64-eabi -mcpu=cyclone | FileCheck %s2; <rdar://problem/11294426>3 4@b = common unnamed_addr global [3 x i32] zeroinitializer, align 45 6; The important thing for this test is that we need an unaligned load of `l_b'7; ("ldr w2, [x1, #8]" in this case).8 9; CHECK: adrp x[[PAGE:[0-9]+]], :got:b10; CHECK-NEXT: ldr x[[PAGE]], [x[[ADDR:[0-9]+]], :got_lo12:b]11; CHECK-NEXT: ldr [[VAL2:x[0-9]+]], [x[[ADDR]]]12; CHECK-NEXT: ldr [[VAL:w[0-9]+]], [x[[ADDR]], #8]13; CHECK-NEXT: str [[VAL]], [x0, #8]14; CHECK-NEXT: str [[VAL2]], [x0]15 16define void @foo(ptr %a) {17 call void @llvm.memcpy.p0.p0.i64(ptr align 4 %a, ptr align 4 @b, i64 12, i1 false)18 ret void19}20 21declare void @llvm.memcpy.p0.p0.i64(ptr nocapture, ptr nocapture, i64, i1) nounwind22