X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FX86%2Favx-trunc.ll;h=d0077366444d65ba9e7269d837b506fe5a6992fe;hb=4e1c4d69e457c1e8892dd86983e71d347aff5553;hp=aa186a05f2179e687c66fba12c2160a0a324b16a;hpb=ab7032090871abf6aeed86b2c4b836e97771d234;p=oota-llvm.git diff --git a/test/CodeGen/X86/avx-trunc.ll b/test/CodeGen/X86/avx-trunc.ll old mode 100755 new mode 100644 index aa186a05f21..d0077366444 --- a/test/CodeGen/X86/avx-trunc.ll +++ b/test/CodeGen/X86/avx-trunc.ll @@ -13,18 +13,3 @@ define <8 x i16> @trunc_32_16(<8 x i32> %A) nounwind uwtable readnone ssp{ ret <8 x i16>%B } -define <8 x i16> @trunc_after_setcc(<8 x float> %a, <8 x float> %b, <8 x float> %c, <8 x float> %d) { -; CHECK: trunc_after_setcc -; CHECK: vcmpltps -; CHECK-NOT: vextract -; CHECK: vcmpltps -; CHECK-NEXT: vandps -; CHECK-NEXT: vandps -; CHECK: ret - %res1 = fcmp olt <8 x float> %a, %b - %res2 = fcmp olt <8 x float> %c, %d - %andr = and <8 x i1>%res1, %res2 - %ex = zext <8 x i1> %andr to <8 x i16> - ret <8 x i16>%ex -} -