Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Mips / cprestore.ll
blobbb27c947d998ebaa956f3af7b627ad110e817128
1 ; DISABLE: llc -march=mipsel < %s | FileCheck %s
2 ; RUN: false
3 ; XFAIL: *
5 ; CHECK: .set macro
6 ; CHECK: .set at
7 ; CHECK-NEXT: .cprestore
8 ; CHECK: .set noat
9 ; CHECK-NEXT: .set nomacro
11 %struct.S = type { [16384 x i32] }
13 define void @foo2() nounwind {
14 entry:
15   %s = alloca %struct.S, align 4
16   call void @foo1(ptr byval(%struct.S) %s)
17   ret void
20 declare void @foo1(ptr byval(%struct.S))