diff --git a/Userland/Libraries/LibJS/Bytecode/ASTCodegen.cpp b/Userland/Libraries/LibJS/Bytecode/ASTCodegen.cpp index a172a8b7543..9797507475c 100644 --- a/Userland/Libraries/LibJS/Bytecode/ASTCodegen.cpp +++ b/Userland/Libraries/LibJS/Bytecode/ASTCodegen.cpp @@ -787,8 +787,8 @@ Bytecode::CodeGenerationErrorOr> DoWhileStatement::g // body // jump always (true) test // end - auto& test_block = generator.make_block(); auto& body_block = generator.make_block(); + auto& test_block = generator.make_block(); auto& load_result_and_jump_to_end_block = generator.make_block(); auto& end_block = generator.make_block();