Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SystemZ / ipra.ll
blob37a1add980e0db8462ea63e397f7ed56163ed568
1 ; Test that the set of used phys regs used by interprocedural register
2 ; allocation is correct for a test case where the called function (@fn2)
3 ; itself has a call (to @fn1). @fn1 defines %r0l, while @fn2 defines
4 ; %r0d. The RegUsageInfo for @fn2 must include %r0h.
6 ; RUN: llc -mtriple=s390x-linux-gnu -mcpu=z13 -enable-ipra -print-regusage 2>&1 < %s \
7 ; RUN:   | FileCheck %s
9 ; CHECK: fn2 Clobbered Registers: {{.*}} $r0h
11 @h = external dso_local global [0 x i32], align 4
12 @n = external dso_local global ptr, align 8
14 define void @fn1() {
15 bb:
16   br label %bb1
18 bb1:                                              ; preds = %bb1, %bb
19   %tmp = getelementptr inbounds [0 x i32], ptr @h, i64 0, i64 undef
20   %tmp2 = load i32, ptr %tmp
21   store i32 %tmp2, ptr undef
22   br label %bb1
25 define void @fn2() {
26 bb:
27   br label %bb1
29 bb1:                                              ; preds = %bb
30   br i1 undef, label %bb2, label %bb3
32 bb2:                                              ; preds = %bb1
33   store ptr null, ptr @n
34   unreachable
36 bb3:                                              ; preds = %bb1
37   call void @fn1()
38   unreachable
41 define void @main() {
42 bb:
43   call void @fn2()
44   ret void