Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64-2011-03-21-Unaligned-Frame-Index.ll
blob7c25e9e609a176422ccd200b8d6cb74839d4ab78
1 ; RUN: llc < %s -mtriple=arm64-eabi | FileCheck %s
2 define 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