code_push_statement(code, &stmt, instr->context.line);
/* instruction generated */
- return true;
+ continue;
}
if (instr->opcode == VINSTR_BITOR_VV) {
code_push_statement(code, &stmt, instr->context.line);
/* instruction generated */
- return true;
+ continue;
}
if (instr->opcode == VINSTR_BITAND_VF) {
code_push_statement(code, &stmt, instr->context.line);
/* instruction generated */
- return true;
+ continue;
}
if (instr->opcode == VINSTR_BITOR_VF) {
code_push_statement(code, &stmt, instr->context.line);
/* instruction generated */
- return true;
+ continue;
}
if (instr->opcode == VINSTR_COND) {
print(vtos(v), "\n");
print(vtos(v / 2), "\n");
print(vtos(v), "\n");
+ print(vtos(v | 16), "\n");
+ print(vtos(v & 16), "\n");
+ print(vtos(v | '25 42 51'), "\n");
+ print(vtos(v & '25 42 51'), "\n");
}