[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / x87.ll
blobaa0d1c5206b631a0c20f6463c6d835aa3c0d09ad
1 ; RUN: llc < %s -mtriple=i686-- | FileCheck %s -check-prefixes=X8732,X87
2 ; RUN: llc < %s -mtriple=x86_64-- -mattr=-sse | FileCheck %s -check-prefixes=X8732,X87
3 ; RUN: llc < %s -mtriple=i686-- -mattr=-x87 | FileCheck %s -check-prefixes=NOX8732,NOX87
4 ; RUN: llc < %s -mtriple=x86_64-- -mattr=-x87,-sse | FileCheck %s -check-prefixes=NOX8732,NOX87
5 ; RUN: llc < %s -mtriple=i686-- -mattr=-x87,+sse | FileCheck %s -check-prefixes=NOX8732,NOX87
6 ; RUN: llc < %s -mtriple=x86_64-- -mattr=-x87,-sse2 | FileCheck %s -check-prefixes=NOX87
8 define void @test(i32 %i, i64 %l, ptr %pf, ptr %pd, ptr %pld) nounwind readnone {
9 ; X87-LABEL: test:
10 ; NOX87-LABEL: test:
12 ; NOX87-NOT: {{ }}f{{.*}}
14 ; X87: fild
15 ; NOX8732: __floatunsisf
16   %tmp = uitofp i32 %i to float
18 ; X8732: fild
19 ; NOX8732: __floatdisf
20   %tmp1 = sitofp i64 %l to float
22 ; X8732: fadd
23 ; NOX8732: __addsf3
24   %tmp2 = fadd float %tmp, %tmp1
26 ; X8732: fstp
27   store float %tmp2, ptr %pf
29 ; X87: fild
30 ; NOX87: __floatunsidf
31   %tmp3 = uitofp i32 %i to double
33 ; X87: fild
34 ; NOX87: __floatdidf
35   %tmp4 = sitofp i64 %l to double
37 ; X87: fadd
38 ; NOX87: __adddf3
39   %tmp5 = fadd double %tmp3, %tmp4
41 ; X87: fstp
42   store double %tmp5, ptr %pd
44 ; X87: __floatsitf
45 ; NOX87: __floatsitf
46   %tmp6 = sitofp i32 %i to fp128
48 ; X87: __floatunditf
49 ; NOX87: __floatunditf
50   %tmp7 = uitofp i64 %l to fp128
52 ; X87: __addtf3
53 ; NOX87: __addtf3
54   %tmp8 = fadd fp128 %tmp6, %tmp7
55   store fp128 %tmp8, ptr %pld
57   ret void