Skip to content

Commit

Permalink
Fixing an assert around Avx.ExtractVector128 and Avx2.ExtractVector128 (
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding committed Nov 11, 2019
1 parent 255f384 commit d52f89c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/coreclr/src/jit/lowerxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2901,6 +2901,12 @@ bool Lowering::IsContainableHWIntrinsicOp(GenTreeHWIntrinsic* containingNode, Ge
return supportsUnalignedSIMDLoads;
}

case NI_AVX_ExtractVector128:
case NI_AVX2_ExtractVector128:
{
return false;
}

default:
{
assert(!node->isContainableHWIntrinsic());
Expand Down

0 comments on commit d52f89c

Please sign in to comment.