Skip to content
Snippets Groups Projects
Commit 458fb49a authored by Arwinder Singh's avatar Arwinder Singh
Browse files

Update mutants/mutant-4/swen90006/machine/Machine.java

parent 25d3ab10
Branches
No related tags found
No related merge requests found
......@@ -148,7 +148,7 @@ public class Machine
private void validate_offset(int offset)
throws InvalidInstructionException
{
if (offset < -MAX_ADDR || offset > MAX_ADDR) {
if (offset < -MAX_ADDR || offset < MAX_ADDR) {
throw new InvalidInstructionException();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment