Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
saucecontrol committed Nov 20, 2024
1 parent c80058b commit 7facafb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/coreclr/jit/lowerxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9231,27 +9231,32 @@ bool Lowering::IsContainableHWIntrinsicOp(GenTreeHWIntrinsic* parentNode, GenTre
widenFactor = 1;
break;
}

case INS_TT_HALF:
case INS_TT_HALF_MEM:
{
widenFactor = 2;
break;
}

case INS_TT_QUARTER_MEM:
{
widenFactor = 4;
break;
}

case INS_TT_EIGHTH_MEM:
{
widenFactor = 8;
break;
}

case INS_TT_MOVDDUP:
{
widenFactor = parentSize == 16 ? 2 : 1;
break;
}

default:
{
unreached();
Expand Down

0 comments on commit 7facafb

Please sign in to comment.