Skip to content

8361730: The CodeBuilder.trying(BlockCodeBuilder,CatchBuilder) method generates corrupted bytecode in certain cases #26602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,11 @@ default CodeBuilder transforming(CodeTransform transform, Consumer<CodeBuilder>
* A builder for blocks of code. Its {@link #startLabel()} and {@link
* #endLabel()} do not enclose the entire method body, but from the start to
* the end of the block.
* <p>
* The location where a block of code merges back to its parent block, as
* represented by the {@link #breakLabel()}, is expected to be reachable,
* either from this block or the parent block. The built code may be
* malformed if there is no executable code at that location.
*
* @since 24
*/
Expand Down