Skip to content

Commit

Permalink
Merge pull request dotnet/coreclr#8463 from CarolEidt/Fix288220
Browse files Browse the repository at this point in the history
Allow remorph of SIMD assignment

Commit migrated from dotnet/coreclr@a04f79c
  • Loading branch information
CarolEidt authored Dec 6, 2016
2 parents da03eec + 736376b commit 043063a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/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 043063a

Please sign in to comment.