summaryrefslogtreecommitdiff
path: root/test/Transforms/TailCallElim/return_constant.ll
blob: 58020248cbcaf3de0230439334698b8bc03d6a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; Though this case seems to be fairly unlikely to occur in the wild, someone
; plunked it into the demo script, so maybe they care about it.
;
; RUN: llvm-upgrade < %s | llvm-as | opt -tailcallelim | llvm-dis | not grep call

int %aaa(int %c) {
entry:
        %tmp.1 = seteq int %c, 0                ; <bool> [#uses=1]
        br bool %tmp.1, label %return, label %else

else:           ; preds = %entry
        %tmp.5 = add int %c, -1         ; <int> [#uses=1]
        %tmp.3 = call int %aaa( int %tmp.5 )            ; <int> [#uses=0]
        ret int 0

return:         ; preds = %entry
        ret int 0
}