Make BasicAliasAnalysis a normal AliasAnalysis implementation which
[oota-llvm.git] / test / Other / 2008-10-15-MissingSpace.ll
1 ; RUN: llvm-as < %s | llvm-dis | not grep {void@}
2 ; PR2894
3 declare void @g()
4 define void @f() {
5   invoke void @g() to label %c unwind label %c
6   c: ret void
7 }