New testcase
[oota-llvm.git] / test / Transforms / PruneEH / 2003-09-14-ExternalCall.llx
1 ; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | grep invoke
2
3 declare void %External()
4
5 implementation
6
7 void %foo() {
8         invoke void %External() to label %Cont except label %Cont
9 Cont:
10         ret void
11 }