Skip to content

Commit

Permalink
Skip compiler stubs as well as thunks.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Jun 17, 2016
1 parent 3bd1bdb commit 390a1c5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -123,7 +123,7 @@ public static void handlerLexical(ThreadContext tc, long category,
CallFrame f = tc.curFrame;
if (skipCaller) {
f = f.caller;
while (f != null && f.codeRef.staticInfo.isThunk)
while (f != null && (f.codeRef.staticInfo.isThunk || f.codeRef.isCompilerStub))
f = f.caller;
}
long[] handler = null;
Expand Down

0 comments on commit 390a1c5

Please sign in to comment.