Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / stack-align2.ll
blob5ebcbbfff52722bbc6c0d59f4195342d81647c45
1 ; RUN: llc -O0 -march=hexagon < %s | FileCheck %s
2 ; CHECK: and(r29,#-128)
3 ; CHECK-DAG: add(r29,#0)
4 ; CHECK-DAG: add(r29,#64)
5 ; CHECK-DAG: add(r29,#96)
6 ; CHECK-DAG: add(r29,#124)
8 target triple = "hexagon-unknown-unknown"
10 ; Function Attrs: nounwind uwtable
11 define void @foo() #0 {
12 entry:
13   %x = alloca i32, align 4
14   %y = alloca i32, align 32
15   %z = alloca i32, align 64
16   %w = alloca i32, align 128
17   call void @bar(ptr %x, ptr %y, ptr %z, ptr %w)
18   ret void
21 declare void @bar(ptr, ptr, ptr, ptr) #0
23 attributes #0 = { nounwind }