mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 01:34:32 +00:00
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
|
||
|
}
|