1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00
llvm-mirror/test/Transforms/InstCombine/2003-10-29-CallSiteResolve.ll
Eric Christopher a62270de2c Revert "Temporarily Revert "Add basic loop fusion pass.""
The reversion apparently deleted the test/Transforms directory.

Will be re-reverting again.

llvm-svn: 358552
2019-04-17 04:52:47 +00:00

19 lines
524 B
LLVM

; RUN: opt < %s -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(...)