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
Next Next commit
more fix
  • Loading branch information
kunalspathak committed Feb 1, 2024
commit 85b3c9898be2414d1e9c90b9e5b8ea0ab37f5793
2 changes: 1 addition & 1 deletion src/coreclr/jit/lsraarm64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ int LinearScan::BuildNode(GenTree* tree)
assert(dstCount == 1);
regMaskTP mask = RBM_NONE;
if (tree->gtTreeID == 21)
//if (tree->IsIconHandle(GTF_ICON_TLS_HDL) && (tree->AsIntCon()->gtIconVal != 0) && (tree->gtFlags & GTF_ICON_SECREL_OFFSET))
if (((tree->gtFlags & GTF_ICON_SECREL_OFFSET) == GTF_ICON_SECREL_OFFSET))
{
mask = genRegMask(REG_R0, TYP_I_IMPL);
}
Expand Down