bolt/deps/llvm-18.1.8/llvm/test/CodeGen/AArch64/arm64-2011-03-21-Unaligned-Frame-Index.ll

12 lines
376 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: llc < %s -mtriple=arm64-eabi | FileCheck %s
define void @foo(i64 %val) {
; CHECK: foo
; The stack frame store is not 64-bit aligned. Make sure we use an
; instruction that can handle that.
; CHECK: stur x0, [sp, #20]
%a = alloca [49 x i32], align 4
%p32 = getelementptr inbounds [49 x i32], ptr %a, i64 0, i64 2
store i64 %val, ptr %p32, align 8
ret void
}