Files
clang-p2996/llvm/test/Transforms/InstCombine/2003-10-29-CallSiteResolve.ll
Bjorn Pettersson acdc419c89 [test] Use -passes=instcombine instead of -instcombine in lots of tests. NFC
Another step moving away from the deprecated syntax of specifying
pass pipeline in opt.

Differential Revision: https://reviews.llvm.org/D119081
2022-02-07 14:26:59 +01:00

19 lines
531 B
LLVM

; RUN: opt < %s -passes=instcombine -disable-output
declare i32* @bar()
define float* @foo() personality i32 (...)* @__gxx_personality_v0 {
%tmp.11 = invoke float* bitcast (i32* ()* @bar to float* ()*)( )
to label %invoke_cont unwind label %X ; <float*> [#uses=1]
invoke_cont: ; preds = %0
ret float* %tmp.11
X: ; preds = %0
%exn = landingpad {i8*, i32}
cleanup
ret float* null
}
declare i32 @__gxx_personality_v0(...)