Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / packetize-tailcall-arg.ll
blobdb617dfd2f52406540e104fe0c909a817c4c4b5f
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
2 ; There should only be one packet:
3 ; {
4 ;   jump free
5 ;   r0 = memw(r0 + #-4)
6 ; }
8 ; CHECK: {
9 ; CHECK-NOT: {
11 define void @fred(ptr %p) nounwind {
12 entry:
13   %arrayidx = getelementptr inbounds i8, ptr %p, i32 -4
14   %t1 = load ptr, ptr %arrayidx, align 4
15   tail call void @free(ptr %t1)
16   ret void
19 ; Function Attrs: nounwind
20 declare void @free(ptr nocapture) nounwind