[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / X86 / avx-fp2int.ll
blobac5fcfe4d5fcee48cc1164e9f92cd6f4f4af74a5
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=i386-apple-darwin10 -mcpu=corei7-avx -mattr=+avx | FileCheck %s
4 ;; Check that FP_TO_SINT and FP_TO_UINT generate convert with truncate
6 define <4 x i8> @test1(<4 x double> %d) {
7 ; CHECK-LABEL: test1:
8 ; CHECK:       ## %bb.0:
9 ; CHECK-NEXT:    vcvttpd2dq %ymm0, %xmm0
10 ; CHECK-NEXT:    vpshufb {{.*#+}} xmm0 = xmm0[0,4,8,12,u,u,u,u,u,u,u,u,u,u,u,u]
11 ; CHECK-NEXT:    vzeroupper
12 ; CHECK-NEXT:    retl
13   %c = fptoui <4 x double> %d to <4 x i8>
14   ret <4 x i8> %c
16 define <4 x i8> @test2(<4 x double> %d) {
17 ; CHECK-LABEL: test2:
18 ; CHECK:       ## %bb.0:
19 ; CHECK-NEXT:    vcvttpd2dq %ymm0, %xmm0
20 ; CHECK-NEXT:    vpshufb {{.*#+}} xmm0 = xmm0[0,4,8,12,u,u,u,u,u,u,u,u,u,u,u,u]
21 ; CHECK-NEXT:    vzeroupper
22 ; CHECK-NEXT:    retl
23   %c = fptosi <4 x double> %d to <4 x i8>
24   ret <4 x i8> %c