• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt < %s -tailcallelim -S | FileCheck %s
2
3
4declare void @foo()
5
6define void @bar() {
7; CHECK: tail call void @foo()
8	call void @foo()
9	ret void
10}
11
12