Update to new predicate simplifier VRP design. Fixes PR966 and PR967.
[oota-llvm.git] / test / Transforms / SimplifyCFG / 2003-08-05-InvokeCrash.ll
1 ; Do not remove the invoke!
2 ;
3 ; RUN: llvm-as < %s | opt -simplifycfg -disable-output
4
5 int %test() {
6         %A = invoke int %test() to label %Ret except label %Ret
7 Ret:
8         ret int %A
9 }