xref: /llvm-project/llvm/test/CodeGen/AArch64/arm64-2011-03-21-Unaligned-Frame-Index.ll (revision 5ddce70ef0e5a641d7fea95e31fc5e2439cb98cb)
1; RUN: llc < %s -mtriple=arm64-eabi | FileCheck %s
2define void @foo(i64 %val) {
3; CHECK: foo
4;   The stack frame store is not 64-bit aligned. Make sure we use an
5;   instruction that can handle that.
6; CHECK: stur x0, [sp, #20]
7  %a = alloca [49 x i32], align 4
8  %p32 = getelementptr inbounds [49 x i32], ptr %a, i64 0, i64 2
9  store i64 %val, ptr %p32, align 8
10  ret void
11}
12