Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Applying formatting patch
  • Loading branch information
tannergooding authored and github-actions committed Sep 2, 2022
commit 0a84cbacb64a01462027bdf2e18a2d92d0c19506
6 changes: 3 additions & 3 deletions src/coreclr/jit/lowerxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3423,7 +3423,7 @@ GenTree* Lowering::LowerHWIntrinsicDot(GenTreeHWIntrinsic* node)
// from including it in the computed result. We need to do this for both op1 and
// op2 in case one of them is `NaN` (because Zero * NaN == NaN)

simd12_t simd12Val = { };
simd12_t simd12Val = {};

simd12Val.i32[0] = -1;
simd12Val.i32[1] = -1;
Expand All @@ -3448,7 +3448,7 @@ GenTree* Lowering::LowerHWIntrinsicDot(GenTreeHWIntrinsic* node)
// ...

GenTreeVecCon* vecCon1 = comp->gtNewVconNode(simdType, simdBaseJitType);
vecCon1->gtSimd12Val = simd12Val;
vecCon1->gtSimd12Val = simd12Val;

BlockRange().InsertAfter(op1, vecCon1);

Expand Down Expand Up @@ -3477,7 +3477,7 @@ GenTree* Lowering::LowerHWIntrinsicDot(GenTreeHWIntrinsic* node)
// ...

GenTreeVecCon* vecCon2 = comp->gtNewVconNode(simdType, simdBaseJitType);
vecCon2->gtSimd12Val = simd12Val;
vecCon2->gtSimd12Val = simd12Val;

BlockRange().InsertAfter(op2, vecCon2);

Expand Down