Skip to content

Commit a0d0812

Browse files
committed
Fix build/merge
1 parent 7a14656 commit a0d0812

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/jit/simd.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1706,7 +1706,7 @@ GenTree* Compiler::createAddressNodeForSIMDInit(GenTree* tree, unsigned simdSize
17061706
GenTree* objRef = tree->AsField()->GetFldObj();
17071707
if (objRef != nullptr && objRef->gtOper == GT_ADDR)
17081708
{
1709-
src/coreclr/jit/simd.cppGenTree* obj = objRef->AsOp()->gtOp1;
1709+
GenTree* obj = objRef->AsOp()->gtOp1;
17101710

17111711
// If the field is directly from a struct, then in this case,
17121712
// we should set this struct's lvUsedInSIMDIntrinsic as true,

0 commit comments

Comments
 (0)