12 lines · plain
1; RUN: llc < %s -mtriple=arm64-eabi | FileCheck %s2define void @foo(i64 %val) {3; CHECK: foo4; The stack frame store is not 64-bit aligned. Make sure we use an5; instruction that can handle that.6; CHECK: stur x0, [sp, #20]7 %a = alloca [49 x i32], align 48 %p32 = getelementptr inbounds [49 x i32], ptr %a, i64 0, i64 29 store i64 %val, ptr %p32, align 810 ret void11}12