File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1924,8 +1924,8 @@ GenTree* Compiler::impSIMDMinMax(SIMDIntrinsicID intrinsicId,
1924
1924
if ((op1->gtFlags & GTF_SIDE_EFFECT) != 0 )
1925
1925
{
1926
1926
op1LclNum = lvaGrabTemp (true DEBUGARG (" SIMD Min/Max" ));
1927
- dupOp1 = gtNewLclvNode (op1LclNum, op1->TypeGet ());
1928
1927
lvaSetStruct (op1LclNum, typeHnd, false );
1928
+ dupOp1 = gtNewLclvNode (op1LclNum, op1->TypeGet ());
1929
1929
op1Assign = gtNewTempAssign (op1LclNum, op1);
1930
1930
op1 = gtNewLclvNode (op1LclNum, op1->TypeGet ());
1931
1931
}
@@ -1937,8 +1937,8 @@ GenTree* Compiler::impSIMDMinMax(SIMDIntrinsicID intrinsicId,
1937
1937
if ((op2->gtFlags & GTF_SIDE_EFFECT) != 0 )
1938
1938
{
1939
1939
op2LclNum = lvaGrabTemp (true DEBUGARG (" SIMD Min/Max" ));
1940
- dupOp2 = gtNewLclvNode (op2LclNum, op2->TypeGet ());
1941
1940
lvaSetStruct (op2LclNum, typeHnd, false );
1941
+ dupOp2 = gtNewLclvNode (op2LclNum, op2->TypeGet ());
1942
1942
op2Assign = gtNewTempAssign (op2LclNum, op2);
1943
1943
op2 = gtNewLclvNode (op2LclNum, op2->TypeGet ());
1944
1944
}
You can’t perform that action at this time.
0 commit comments