AVX-512: I brought back vector-shuffle-512-v8.ll test.

I re-generated it after all AVX-512 shuffle optimizations.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239026 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Elena Demikhovsky 2015-06-04 07:49:56 +00:00
parent 71bb0e10c4
commit 0880fe5997
2 changed files with 1155 additions and 1 deletions

View File

@ -6360,7 +6360,8 @@ static SDValue get1bitLaneShuffleImm8ForMask(ArrayRef<int> Mask, SDLoc DL,
"Up to 8 elts may be in Imm8 1-bit lane shuffle mask");
unsigned Imm = 0;
for (unsigned i = 0; i < Mask.size(); ++i)
Imm |= (Mask[i] % 2) << i;
if (Mask[i] >= 0)
Imm |= (Mask[i] % 2) << i;
return DAG.getConstant(Imm, DL, MVT::i8);
}

File diff suppressed because it is too large Load Diff