Skip to content

Commit 8b647bc

Browse files
authored
Merge pull request eclipse-openj9#20910 from tajila/jfr
Use frameType info in JFR stackFrames
2 parents a3f892c + 1635cc6 commit 8b647bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/vm/JFRConstantPoolTypes.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ class VM_JFRConstantPoolTypes {
510510
goto skipFrame;
511511
} else {
512512
frame->methodIndex = cp->getMethodEntry(romMethod, ramClass);
513-
frame->frameType = Interpreted; /* TODO need a way to know if its JIT'ed and inlined */
513+
frame->frameType = (FrameType) frameType;
514514
}
515515

516516
if ((UDATA)-1 == bytecodeOffset) {

0 commit comments

Comments
 (0)