Identation + comments
This commit is contained in:
Roberto Ierusalimschy
2024-09-06 14:35:04 -03:00
parent fd0e1f530d
commit 007b8c7a01
3 changed files with 20 additions and 20 deletions

View File

@@ -1837,8 +1837,8 @@ static int finaltarget (Instruction *code, int i) {
Instruction pc = code[i];
if (GET_OPCODE(pc) != OP_JMP)
break;
else
i += GETARG_sJ(pc) + 1;
else
i += GETARG_sJ(pc) + 1;
}
return i;
}