mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
12 lines
242 B
LLVM
12 lines
242 B
LLVM
|
; RUN: llvm-as < %s | llc -march=msp430
|
||
|
|
||
|
define i16 @test(double %d) nounwind {
|
||
|
entry:
|
||
|
%add = add double %d, 1.000000e+00
|
||
|
%call = tail call i16 @funct(double %add) nounwind
|
||
|
ret i16 %call
|
||
|
}
|
||
|
|
||
|
declare i16 @funct(double)
|
||
|
|