Skip to content

Commit

Permalink
Arm64: Fix perfscore and display logic for LARGELDC (#59134)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunalspathak authored Sep 15, 2021
1 parent 4177cd5 commit abd0088
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/coreclr/jit/emitarm64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12179,7 +12179,7 @@ void emitter::emitDispInsHex(instrDesc* id, BYTE* code, size_t sz)
}
else
{
assert(sz == 0);
assert(id->idCodeSize() == sz);
printf(" ");
}
}
Expand Down Expand Up @@ -13787,6 +13787,9 @@ void emitter::getMemoryOperation(instrDesc* id, unsigned* pMemAccessKind, bool*
isLocalAccess = true;
}
break;
case IF_LARGELDC:
isLocalAccess = false;
break;

default:
assert(!"Logic Error");
Expand Down

0 comments on commit abd0088

Please sign in to comment.