diff --git a/src/machine-vuln5.c b/src/machine-vuln5.c
index 6c9f46029e4244ca5c7ef5f6507692f829135ee7..214ae3750eb52e1beb53dcca19d395dba6c1856c 100644
--- a/src/machine-vuln5.c
+++ b/src/machine-vuln5.c
@@ -385,7 +385,7 @@ int execute(const unsigned int progLength, const int cycles, int32_t * res){
/* this should never overflow given constraints on both pc and offs */
pc = pc + offs;
count++;
- continue; /* avoid default increment of pc below */
+ //continue; /* avoid default increment of pc below */
}else{
return -1;
}
@@ -396,7 +396,7 @@ int execute(const unsigned int progLength, const int cycles, int32_t * res){
unsigned int ra = 0;
int32_t offs = 0;
- /*if (parseReg(toks[1],&ra) == 0 &&
+ if (parseReg(toks[1],&ra) == 0 &&
parseOffset(toks[2],&offs) == 0){
if (regs[ra] == 0){
pc = pc + offs;
@@ -404,13 +404,13 @@ int execute(const unsigned int progLength, const int cycles, int32_t * res){
pc = pc + 1;
}
count++;
- continue; /* avoid default increment the pc below
+ //continue; /* avoid default increment the pc below */
} else {
return -1;
}
}else{
debug_printf("Unrecognised opcode: %s\n",toks[0]);
- return -1; */
+ return -1;
}
count++;
pc = pc + 1;