ARM: allow predicated barriers in Thumb mode
[oota-llvm.git] / test / Transforms / TailCallElim / trivial_codegen_tailcall.ll
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