[InstCombine] Signed saturation tests. NFC
[llvm-complete.git] / test / Transforms / ADCE / dce_pure_invoke.ll
blobe01c9feaeb065c6613f10757bfa9098a5f945e5b
1 ; RUN: opt < %s -adce -S | grep null
3 declare i32 @strlen(i8*) readnone
5 define i32 @test() personality i32 (...)* @__gxx_personality_v0 {
6         ; invoke of pure function should not be deleted!
7         invoke i32 @strlen( i8* null ) readnone
8                         to label %Cont unwind label %Other              ; <i32>:1 [#uses=0]
10 Cont:           ; preds = %0
11         ret i32 0
13 Other:          ; preds = %0
14          %exn = landingpad {i8*, i32}
15                   cleanup
16         ret i32 1
19 declare i32 @__gxx_personality_v0(...)