Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 3 additions & 1 deletion src/coreclr/jit/gentree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29916,7 +29916,9 @@ GenTree* Compiler::gtFoldExprHWIntrinsic(GenTreeHWIntrinsic* tree)

// MultiplyByScalar takes a vector as the second operand but only utilizes element 0
// We need to extract it and then functionally broadcast it up for the evaluation to
// work as expected.
// work as expected. Ensuring we broadcast up to the target vector size.

otherNode->gtType = retType;

if (varTypeIsFloating(simdBaseType))
{
Expand Down
Loading