In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / Transforms / SCCP / 2009-01-14-IPSCCP-Invoke.ll
blob20f7c21b7c1880835c9067e80aed06095d214f2c
1 ; RUN: llvm-as < %s | opt -ipsccp | llvm-dis | grep {ret i32 42}
2 ; RUN: llvm-as < %s | opt -ipsccp | llvm-dis | grep {ret i32 undef}
3 ; PR3325
5 define i32 @main() {
6         %tmp1 = invoke i32 @f()
7                         to label %UnifiedReturnBlock unwind label %lpad
9 lpad:
10         unreachable
12 UnifiedReturnBlock:
13         ret i32 %tmp1
16 define internal i32 @f() {
17        ret i32 42
20 declare i8* @__cxa_begin_catch(i8*) nounwind
22 declare i8* @llvm.eh.exception() nounwind
24 declare i32 @llvm.eh.selector.i32(i8*, i8*, ...) nounwind
26 declare void @__cxa_end_catch()
28 declare i32 @__gxx_personality_v0(...)