1 ; RUN: llc -march=mipsel < %s | FileCheck %s -check-prefix=32
2 ; RUN: llc -march=mips64el -mcpu=mips4 < %s | FileCheck %s -check-prefix=64
3 ; RUN: llc -march=mips64el -mcpu=mips64 < %s | FileCheck %s -check-prefix=64
5 @i1 = global [3 x i32] [i32 1, i32 2, i32 3], align 4
6 @i3 = common global i32* null, align 4
8 ; 32-LABEL: test_float_int_:
9 ; 32: mtc1 ${{[0-9]+}}, $f[[R0:[0-9]+]]
10 ; 32: cvt.s.w $f{{[0-9]+}}, $f[[R0]]
12 define float @test_float_int_(i32 %a) {
14 %conv = sitofp i32 %a to float
18 ; 32-LABEL: test_double_int_:
19 ; 32: mtc1 ${{[0-9]+}}, $f[[R0:[0-9]+]]
20 ; 32: cvt.d.w $f{{[0-9]+}}, $f[[R0]]
21 ; 64-LABEL: test_double_int_:
22 ; 64: mtc1 ${{[0-9]+}}, $f[[R0:[0-9]+]]
23 ; 64: cvt.d.w $f{{[0-9]+}}, $f[[R0]]
25 define double @test_double_int_(i32 %a) {
27 %conv = sitofp i32 %a to double
31 ; 64-LABEL: test_float_LL_:
32 ; 64: dmtc1 ${{[0-9]+}}, $f[[R0:[0-9]+]]
33 ; 64: cvt.s.l $f{{[0-9]+}}, $f[[R0]]
35 define float @test_float_LL_(i64 %a) {
37 %conv = sitofp i64 %a to float
41 ; 64-LABEL: test_double_LL_:
42 ; 64: dmtc1 ${{[0-9]+}}, $f[[R0:[0-9]+]]
43 ; 64: cvt.d.l $f{{[0-9]+}}, $f[[R0]]
45 define double @test_double_LL_(i64 %a) {
47 %conv = sitofp i64 %a to double