blob: 7492721818840b3403ebc0473fb502c19c44ad42 [file] [log] [blame]
Daniel Sanders8008de52015-10-15 14:34:23 +00001; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mattr=mips16 -relocation-model=static < %s | FileCheck %s
Reed Kotlerc03807a2013-08-30 19:40:56 +00002
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
5
6; Function Attrs: nounwind
7define void @foo() #0 {
8entry:
David Blaikiea79ac142015-02-27 21:17:42 +00009 %0 = load float, float* @x, align 4
Reed Kotlerc03807a2013-08-30 19:40:56 +000010 %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, float* @x, align 4
14 ret void
15}
16; CHECK: .ent foo
17; CHECK: jal __mips16_extendsfdf2
18; CHECK: .end foo
19
20; Function Attrs: nounwind
21define void @nofoo() #1 {
22entry:
David Blaikiea79ac142015-02-27 21:17:42 +000023 %0 = load float, float* @x, align 4
Reed Kotlerc03807a2013-08-30 19:40:56 +000024 %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, float* @x, align 4
28 ret void
29}
30
31; CHECK: .ent nofoo
32; CHECK: cvt.d.s $f{{.+}}, $f{{.+}}
33; CHECK: .end nofoo
34
35
Eric Christophera9353d12014-09-26 01:44:08 +000036attributes #0 = { nounwind "less-precise-fpmad"="false" "mips16" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
37attributes #1 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "nomips16" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
Reed Kotlerc03807a2013-08-30 19:40:56 +000038