From 5b234401c72048094eb50ef78a7d3bfaa5a6914a Mon Sep 17 00:00:00 2001 From: Irwin D'Souza Date: Fri, 19 Nov 2021 14:18:53 -0500 Subject: [PATCH] Remove nonexistent data from relo log format string The relocation debug dump code for TR_ValidateStackWalkerMaySkipFramesRecord incorrectly tried to also print out a beholderMethod even though there isn't one. Signed-off-by: Irwin D'Souza --- runtime/compiler/codegen/J9AheadOfTimeCompile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/compiler/codegen/J9AheadOfTimeCompile.cpp b/runtime/compiler/codegen/J9AheadOfTimeCompile.cpp index cc8d72692e5..5c99df0cd73 100644 --- a/runtime/compiler/codegen/J9AheadOfTimeCompile.cpp +++ b/runtime/compiler/codegen/J9AheadOfTimeCompile.cpp @@ -1813,7 +1813,7 @@ J9::AheadOfTimeCompile::dumpRelocationHeaderData(uint8_t *cursor, bool isVerbose self()->traceRelocationOffsets(cursor, offsetSize, endOfCurrentRecord, orderedPair); if (isVerbose) { - traceMsg(self()->comp(), "\n Validate Stack Walker May Skip Frames: methodID=%d, methodClassID=%d, beholderID=%d, skipFrames=%s ", + traceMsg(self()->comp(), "\n Validate Stack Walker May Skip Frames: methodID=%d, methodClassID=%d, skipFrames=%s ", (uint32_t)swmsfRecord->methodID(reloTarget), (uint32_t)swmsfRecord->methodClassID(reloTarget), swmsfRecord->skipFrames(reloTarget) ? "true" : "false");