Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / packetize-call-r29.ll
blobdab2df75ab8841a7187abda55a4588eca49c2a35
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; Test that the assignment to r29 does not occur in the same packet as the call.
5 ; CHECK: call
6 ; CHECK: }
7 ; CHECK: r29 = #0
9 define protected void @f0(ptr %a0, ptr %a1, ...) local_unnamed_addr {
10 b0:
11   call void @llvm.va_start(ptr nonnull undef)
12   call void @f1()
13   call void @llvm.stackrestore(ptr null)
14   ret void
17 ; Function Attrs: nounwind
18 declare void @llvm.va_start(ptr) #0
20 declare protected void @f1() local_unnamed_addr
22 ; Function Attrs: nounwind
23 declare void @llvm.stackrestore(ptr) #0
25 attributes #0 = { nounwind }