Skip to content

Commit

Permalink
Merge pull request #7085 from knn-k/aarch64runtime20
Browse files Browse the repository at this point in the history
Fix build break with isPointerInSharedCache() in IProfiler.cpp
  • Loading branch information
0xdaryl committed Sep 19, 2019
2 parents fc96d82 + 4336c8c commit 6e3b331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/compiler/runtime/IProfiler.cpp
Expand Up @@ -399,7 +399,7 @@ TR_IProfiler::persistIprofileInfo(TR::ResolvedMethodSymbol *resolvedMethodSymbol
// can only persist profile info if the method is in the shared cache
if (comp->fej9()->sharedCache()->isPointerInSharedCache(romMethod))
{
TR_ASSERT(comp->fej9()->sharedCache()->isPointerInSharedCache(methodStart), "bytecodes not in shared cache");
TR_ASSERT(comp->fej9()->sharedCache()->isPointerInSharedCache((void *)methodStart), "bytecodes not in shared cache");
// check if there is already an entry
unsigned char storeBuffer[1000];
uint32_t bufferLength = 1000;
Expand Down

0 comments on commit 6e3b331

Please sign in to comment.