Home | History | Annotate | Download | only in TailCallElim
      1 ; RUN: opt < %s -tailcallelim -S | FileCheck %s
      2 
      3 
      4 declare void @foo()
      5 
      6 define void @bar() {
      7 ; CHECK: tail call void @foo()
      8 	call void @foo()
      9 	ret void
     10 }
     11 
     12