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) {
8 %tobool = icmp eq i32 %a, 0
9 br i1 %tobool, label %if.else, label %if.then
16 notail call void @callee1()
23 declare void @callee0()
24 declare void @callee1()