Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #8463 from CarolEidt/Fix288220
Browse files Browse the repository at this point in the history
Allow remorph of SIMD assignment
  • Loading branch information
CarolEidt authored Dec 6, 2016
2 parents 7b92136 + 70e11ac commit a04f79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit/morph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10579,7 +10579,7 @@ GenTreePtr Compiler::fgMorphSmpOp(GenTreePtr tree, MorphAddrContext* mac)
{
// We should check whether op2 should be assigned to a SIMD field or not.
// If it is, we should tranlate the tree to simd intrinsic.
assert((tree->gtDebugFlags & GTF_DEBUG_NODE_MORPHED) == 0);
assert(!fgGlobalMorph || ((tree->gtDebugFlags & GTF_DEBUG_NODE_MORPHED) == 0));
GenTreePtr newTree = fgMorphFieldAssignToSIMDIntrinsicSet(tree);
typ = tree->TypeGet();
op1 = tree->gtGetOp1();
Expand Down

0 comments on commit a04f79c

Please sign in to comment.