Skip to content

Commit

Permalink
Merge pull request eclipse-openj9#20924 from tajila/jfrbackport
Browse files Browse the repository at this point in the history
(0.49) Use frameType info in JFR stackFrames
  • Loading branch information
tajila authored Jan 13, 2025
2 parents 4653f19 + 36bc22e commit 2d88806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/vm/JFRConstantPoolTypes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ class VM_JFRConstantPoolTypes {
goto skipFrame;
} else {
frame->methodIndex = cp->getMethodEntry(romMethod, ramClass);
frame->frameType = Interpreted; /* TODO need a way to know if its JIT'ed and inlined */
frame->frameType = (FrameType) frameType;
}

if ((UDATA)-1 == bytecodeOffset) {
Expand Down

0 comments on commit 2d88806

Please sign in to comment.