Revert "[AArch64] Add DAG combine for extract extend pattern"
[oota-llvm.git] / test / CodeGen / Mips / fixdfsf.ll
1 ; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mattr=mips16 -relocation-model=pic < %s | FileCheck %s -check-prefix=pic1
2 ; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mattr=mips16 -relocation-model=pic < %s | FileCheck %s -check-prefix=pic2
3
4 @x = common global double 0.000000e+00, align 8
5 @y = common global i32 0, align 4
6
7 ; Function Attrs: nounwind optsize
8 define void @foo()  {
9 entry:
10   %0 = load double, double* @x, align 8
11   %conv = fptoui double %0 to i32
12   store i32 %conv, i32* @y, align 4
13 ; pic1: lw      ${{[0-9]+}}, %call16(__fixunsdfsi)(${{[0-9]+}})
14 ; pic2: lw      ${{[0-9]+}}, %got(__mips16_call_stub_2)(${{[0-9]+}})
15   ret void
16 }
17
18