[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / TailCallElim / notail.ll
blobd84e1a1525fe554d2bca10e03ce4d39bb54e4928
1 ; RUN: opt < %s -tailcallelim -verify-dom-info -S | FileCheck %s
3 ; CHECK: tail call void @callee0()
4 ; CHECK: notail call void @callee1()
6 define void @foo1(i32 %a) {
7 entry:
8   %tobool = icmp eq i32 %a, 0
9   br i1 %tobool, label %if.else, label %if.then
11 if.then:
12   call void @callee0()
13   br label %if.end
15 if.else:
16   notail call void @callee1()
17   br label %if.end
19 if.end:
20   ret void
23 declare void @callee0()
24 declare void @callee1()