Skip to content

Commit

Permalink
Remove a couple of asserts, which are no longer valid, from getMaxVec…
Browse files Browse the repository at this point in the history
…torTByteLength (#87504)
  • Loading branch information
tannergooding authored Jun 14, 2023
1 parent 923fded commit f385924
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/coreclr/jit/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -8722,7 +8722,6 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
// TODO: We should be returning 0 here, but there are a number of
// places that don't quite get handled correctly in that scenario

assert((JitConfig.EnableHWIntrinsic() == 0) || (JitConfig.EnableSSE() == 0));
return XMM_REGSIZE_BYTES;
}
#elif defined(TARGET_ARM64)
Expand All @@ -8735,7 +8734,6 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
// TODO: We should be returning 0 here, but there are a number of
// places that don't quite get handled correctly in that scenario

assert((JitConfig.EnableHWIntrinsic() == 0) || (JitConfig.EnableArm64AdvSimd() == 0));
return FP_REGSIZE_BYTES;
}
#else
Expand Down

0 comments on commit f385924

Please sign in to comment.