[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / ArgumentPromotion / musttail.ll
blobaa18711686938bf3a9567d908be0e087c60ffd49
1 ; RUN: opt < %s -argpromotion -S | FileCheck %s
2 ; PR36543
4 ; Don't promote arguments of musttail callee
6 %T = type { i32, i32, i32, i32 }
8 ; CHECK-LABEL: define internal i32 @test(%T* %p)
9 define internal i32 @test(%T* %p) {
10   %a.gep = getelementptr %T, %T* %p, i64 0, i32 3
11   %b.gep = getelementptr %T, %T* %p, i64 0, i32 2
12   %a = load i32, i32* %a.gep
13   %b = load i32, i32* %b.gep
14   %v = add i32 %a, %b
15   ret i32 %v
18 ; CHECK-LABEL: define i32 @caller(%T* %p)
19 define i32 @caller(%T* %p) {
20   %v = musttail call i32 @test(%T* %p)
21   ret i32 %v
24 ; Don't promote arguments of musttail caller
26 define i32 @foo(%T* %p, i32 %v) {
27   ret i32 0
30 ; CHECK-LABEL: define internal i32 @test2(%T* %p, i32 %p2)
31 define internal i32 @test2(%T* %p, i32 %p2) {
32   %a.gep = getelementptr %T, %T* %p, i64 0, i32 3
33   %b.gep = getelementptr %T, %T* %p, i64 0, i32 2
34   %a = load i32, i32* %a.gep
35   %b = load i32, i32* %b.gep
36   %v = add i32 %a, %b
37   %ca = musttail call i32 @foo(%T* undef, i32 %v)
38   ret i32 %ca
41 ; CHECK-LABEL: define i32 @caller2(%T* %g)
42 define i32 @caller2(%T* %g) {
43   %v = call i32 @test2(%T* %g, i32 0)
44   ret i32 %v