[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / Mips / Fast-ISel / fpext.ll
blobd9637af926350dbc473e45fe7ff8ebe39376638e
1 ; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=3 -mcpu=mips32r2 \
2 ; RUN:     < %s | FileCheck %s
3 ; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=3 -mcpu=mips32 \
4 ; RUN:     < %s | FileCheck %s
6 @f = global float 0x40147E6B80000000, align 4
7 @d_f = common global double 0.000000e+00, align 8
8 @.str = private unnamed_addr constant [6 x i8] c"%f  \0A\00", align 1
10 ; Function Attrs: nounwind
11 define void @dv() #0 {
12 entry:
13   %0 = load float, float* @f, align 4
14   %conv = fpext float %0 to double
15 ; CHECK: cvt.d.s  $f{{[0-9]+}}, $f{{[0-9]+}}
16   store double %conv, double* @d_f, align 8
17   ret void
21 attributes #1 = { nounwind }