mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
6edd43eaae
llvm-svn: 9599
12 lines
242 B
LLVM
12 lines
242 B
LLVM
; RUN: llvm-as < %s | opt -instcombine -disable-output
|
|
|
|
declare int* %bar()
|
|
|
|
float* %foo() {
|
|
%tmp.11 = invoke float* cast (int* ()* %bar to float* ()*)()
|
|
to label %invoke_cont except label %invoke_cont
|
|
|
|
invoke_cont:
|
|
ret float *%tmp.11
|
|
}
|