[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / fp128-store.ll
blobe93771442b74a7c1f490a882abb579f5377d1012
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -O2 -mtriple=x86_64-linux-android -mattr=+mmx | FileCheck %s
3 ; RUN: llc < %s -O2 -mtriple=x86_64-linux-gnu -mattr=+mmx | FileCheck %s
5 ; __float128 myFP128 = 1.0L;  // x86_64-linux-android
6 @myFP128 = dso_local global fp128 0xL00000000000000003FFF000000000000, align 16
8 define dso_local void @set_FP128(fp128 %x) {
9 ; CHECK-LABEL: set_FP128:
10 ; CHECK:       # %bb.0: # %entry
11 ; CHECK-NEXT:    movaps %xmm0, myFP128(%rip)
12 ; CHECK-NEXT:    retq
13 entry:
14   store fp128 %x, ptr @myFP128, align 16
15   ret void