Skip to content
Snippets Groups Projects
Commit d1577666 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Cometic change.

Rev: src/interpreter.h:1.51
parent 1ef557d6
No related branches found
No related tags found
No related merge requests found
......@@ -177,6 +177,7 @@ static int eval_instruction(unsigned char *pc)
#define OPCODE2_TAIL(OP,DESC) CASE(OP);
#define OPCODE0_JUMP(OP,DESC) CASE(OP); {
#define OPCODE0_TAILJUMP(OP,DESC) } CASE(OP) {;
/* These are something of a special case as they
* requires a POINTER stored explicitly after
......@@ -189,7 +190,6 @@ static int eval_instruction(unsigned char *pc)
INT32 arg1=GET_ARG(); \
INT32 arg2=GET_ARG2();
#define OPCODE0_TAILJUMP(OP,DESC) } CASE(OP) {;
#define OPCODE1_TAILJUMP(OP,DESC) } CASE(OP) {;
#define OPCODE2_TAILJUMP(OP,DESC) } CASE(OP) {;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment