Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
/ jdk13u-dev Public archive

Commit

Permalink
8245283: JFR: Can't handle constant dynamic used by Jacoco agent
Browse files Browse the repository at this point in the history
Backport-of: 2bfc64a
  • Loading branch information
Ekaterina Vergizova committed Feb 25, 2021
1 parent 422eb19 commit a3174be
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,10 @@ static u2 position_stream_after_cp(const ClassFileStream* stream) {
}
}
continue;
case JVM_CONSTANT_Dynamic:
stream->skip_u2_fast(1);
stream->skip_u2_fast(1);
continue;
default:
assert(false, "error in skip logic!");
break;
Expand Down

1 comment on commit a3174be

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.