Skip to content

Commit

Permalink
Merge pull request #9078 from mpirvu/fixBuildBreak
Browse files Browse the repository at this point in the history
Fix debug build break in JITServer code
  • Loading branch information
ymanton committed Apr 2, 2020
2 parents bd76536 + 9cf5cf2 commit 78627dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/compiler/env/J9ClassEnv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ J9::ClassEnv::isValueTypeClass(TR_OpaqueClassBlock *clazz)
uintptr_t classFlags = 0;
JITServerHelpers::getAndCacheRAMClassInfo((J9Class *)clazz, TR::compInfoPT->getClientData(), stream, JITServerHelpers::CLASSINFO_CLASS_FLAGS, (void *)&classFlags);
#ifdef DEBUG
stream->write(JITServer::MessageType::ClassEnv_classFlagsValue, classPointer);
stream->write(JITServer::MessageType::ClassEnv_classFlagsValue, clazz);
uintptr_t classFlagsRemote = std::get<0>(stream->read<uintptr_t>());
// Check that class flags from remote call is equal to the cached ones
classFlags = classFlags & J9ClassIsValueType;
Expand Down

0 comments on commit 78627dd

Please sign in to comment.