1 ; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mattr=mips16 -relocation-model=static < %s | FileCheck %s
3 @x = global float 0.000000e+00, align 4
4 @.str = private unnamed_addr constant [20 x i8] c"in main: mips16 %f\0A\00", align 1
6 ; Function Attrs: nounwind
7 define void @foo() #0 {
9 %0 = load float, ptr @x, align 4
10 %conv = fpext float %0 to double
11 %add = fadd double %conv, 1.500000e+00
12 %conv1 = fptrunc double %add to float
13 store float %conv1, ptr @x, align 4
17 ; CHECK: jal __mips16_extendsfdf2
20 ; Function Attrs: nounwind
21 define void @nofoo() #1 {
23 %0 = load float, ptr @x, align 4
24 %conv = fpext float %0 to double
25 %add = fadd double %conv, 3.900000e+00
26 %conv1 = fptrunc double %add to float
27 store float %conv1, ptr @x, align 4
32 ; CHECK: cvt.d.s $f{{.+}}, $f{{.+}}
36 attributes #0 = { nounwind "less-precise-fpmad"="false" "mips16" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
37 attributes #1 = { nounwind "less-precise-fpmad"="false" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "nomips16" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }