add missing break
This commit is contained in:
parent
295b1da8c0
commit
a1ac44ab70
1
creole.c
1
creole.c
|
@ -560,6 +560,7 @@ enum creole_run_ret creole_step(struct creole_env *env, creole_word *sc)
|
||||||
switch (ins.opcode) {
|
switch (ins.opcode) {
|
||||||
case CREOLE_DB:
|
case CREOLE_DB:
|
||||||
env->dats[ins.w[0]] = ins.datapt;
|
env->dats[ins.w[0]] = ins.datapt;
|
||||||
|
break;
|
||||||
case CREOLE_PUSH:
|
case CREOLE_PUSH:
|
||||||
check(read_val(env, &ins, 0, &a1));
|
check(read_val(env, &ins, 0, &a1));
|
||||||
check(creole_push(env, a1));
|
check(creole_push(env, a1));
|
||||||
|
|
Loading…
Reference in New Issue