Skip to content

Commit

Permalink
JIT: generalize assert to handle SIMD64 (#92235)
Browse files Browse the repository at this point in the history
Fixes #91799.
  • Loading branch information
AndyAyersMS committed Sep 19, 2023
1 parent 67dbbeb commit 17eff3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/jit/lower.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1558,7 +1558,7 @@ void Lowering::LowerArg(GenTreeCall* call, CallArg* callArg, bool late)
// the assert below.

assert((jitIntrinsic->GetSimdSize() == 12) || (jitIntrinsic->GetSimdSize() == 16) ||
(jitIntrinsic->GetSimdSize() == 32));
(jitIntrinsic->GetSimdSize() == 32) || (jitIntrinsic->GetSimdSize() == 64));

if (jitIntrinsic->GetSimdSize() == 12)
{
Expand Down

0 comments on commit 17eff3b

Please sign in to comment.