Make instcombine promote inline asm calls to 'nounwind'
[oota-llvm.git] / test / Transforms / InstCombine / 2007-12-16-AsmNoUnwind.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep nounwind
2
3 define void @bar() {
4 entry:
5         call void asm sideeffect "", "~{dirflag},~{fpsr},~{flags}"( )
6         ret void
7 }