aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 6230897939e..e116936e55d 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -275,7 +275,7 @@ enum byte_code_op
275/* Fetch two bytes from the bytecode stream and make a 16-bit number 275/* Fetch two bytes from the bytecode stream and make a 16-bit number
276 out of them. */ 276 out of them. */
277 277
278#define FETCH2 (op = FETCH, op | (FETCH << 8)) 278#define FETCH2 (pc += 2, pc[-2] | pc[-1] << 8)
279 279
280/* Push X onto the execution stack. The expression X should not 280/* Push X onto the execution stack. The expression X should not
281 contain TOP, to avoid competing side effects. */ 281 contain TOP, to avoid competing side effects. */