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
Use the correct register type
  • Loading branch information
kunalspathak authored and github-actions committed Aug 18, 2022
commit 6490cd0f996cfe316107a72f38d11b618945947f
2 changes: 1 addition & 1 deletion src/coreclr/jit/lsra.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2723,7 +2723,7 @@ bool LinearScan::isMatchingConstant(RegRecord* physRegRecord, RefPosition* refPo
{
return
#if FEATURE_PARTIAL_SIMD_CALLEE_SAVE
!Compiler::varTypeNeedsPartialCalleeSave(physRegRecord->registerType) &&
!Compiler::varTypeNeedsPartialCalleeSave(physRegRecord->assignedInterval->registerType) &&
#endif
GenTreeVecCon::Equals(refPosition->treeNode->AsVecCon(), otherTreeNode->AsVecCon());
}
Expand Down