diff options
Diffstat (limited to 'src/interp.c')
-rw-r--r-- | src/interp.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/interp.c b/src/interp.c index f15adc5..4f034f7 100644 --- a/src/interp.c +++ b/src/interp.c @@ -46,7 +46,6 @@ union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg a [CALLI_F] = &&CALLI_F, [ESCAPEI] = &&ESCAPEI, - [LABEL] = &&LABEL, [START] = &&START, [END] = &&END, }; @@ -79,9 +78,6 @@ union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg a DO(START); DISPATCH(); - DO(LABEL); - DISPATCH(); - DO(END); goto out_int; DISPATCH(); |