[ARM] More MVE compare vector splat combines for ANDs
[llvm-complete.git] / test / CodeGen / SystemZ / ipra.ll
blob42bfcccc0cb2d77dd7af183604301de3cf39b842
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 global [0 x i32], align 4
12 @n = external global i32*, align 8
14 define void @fn1() {
15 bb:
16   br label %bb1
18 bb1:                                              ; preds = %bb1, %bb
19   %tmp = getelementptr inbounds [0 x i32], [0 x i32]* @h, i64 0, i64 undef
20   %tmp2 = load i32, i32* %tmp
21   store i32 %tmp2, i32* 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 i32* null, i32** @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