hanchenye-llvm-project/llvm/test/Transforms/InstCombine/2003-10-29-CallSiteResolve.ll

14 lines
267 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output
declare int* %bar()
float* %foo() {
%tmp.11 = invoke float* cast (int* ()* %bar to float* ()*)()
to label %invoke_cont except label %X
invoke_cont:
ret float *%tmp.11
X:
ret float *null
}