Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64-fast-isel-alloca.ll
blobc15a5dbbf672b7072a456b7e9f236a4dbbe9e49e
1 ; This test should cause the TargetMaterializeAlloca to be invoked
2 ; RUN: llc -O0 -fast-isel -fast-isel-abort=1 -verify-machineinstrs -mtriple=arm64-apple-darwin -frame-pointer=all < %s | FileCheck %s
4 %struct.S1Ty = type { i64 }
5 %struct.S2Ty = type { %struct.S1Ty, %struct.S1Ty }
7 define void @takeS1(ptr %V) nounwind {
8 entry:
9   %V.addr = alloca ptr, align 8
10   store ptr %V, ptr %V.addr, align 8
11   ret void
14 define void @main() nounwind {
15 entry:
16 ; CHECK: main
17 ; CHECK: add x29, sp, #16
18 ; CHECK: mov [[REG:x[0-9]+]], sp
19 ; CHECK-NEXT: add x0, [[REG]], #8
20   %E = alloca %struct.S2Ty, align 4
21   %B = getelementptr inbounds %struct.S2Ty, ptr %E, i32 0, i32 1
22   call void @takeS1(ptr %B)
23   ret void