[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / SCCP / 2009-01-14-IPSCCP-Invoke.ll
blobf3e54804f306a69fa874177a010d138031b59426
1 ; RUN: opt < %s -ipsccp -S | grep "ret i32 42"
2 ; RUN: opt < %s -ipsccp -S | grep "ret i32 undef"
3 ; PR3325
5 define i32 @main() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
6         %tmp1 = invoke i32 @f()
7                         to label %UnifiedReturnBlock unwind label %lpad
9 lpad:
10         %val = landingpad { i8*, i32 }
11                  cleanup
12         unreachable
14 UnifiedReturnBlock:
15         ret i32 %tmp1
18 define internal i32 @f() {
19        ret i32 42
22 declare i8* @__cxa_begin_catch(i8*) nounwind
24 declare void @__cxa_end_catch()
26 declare i32 @__gxx_personality_v0(...)