You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
233 B
12 lines
233 B
4 months ago
|
; RUN: llc < %s -march=msp430
|
||
|
|
||
|
define i16 @test(double %d) nounwind {
|
||
|
entry:
|
||
|
%add = fadd double %d, 1.000000e+00
|
||
|
%call = tail call i16 @funct(double %add) nounwind
|
||
|
ret i16 %call
|
||
|
}
|
||
|
|
||
|
declare i16 @funct(double)
|
||
|
|