diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/common.h b/src/common.h index 6ee0df7..493a89d 100644 --- a/src/common.h +++ b/src/common.h @@ -288,13 +288,7 @@ struct ejit_func { void *direct_call; size_t size; size_t prio; -}; - - -struct interp_state { - struct gprs gprs; - struct fprs fprs; - struct args args; + size_t max_args; }; union interp_ret { @@ -304,7 +298,6 @@ union interp_ret { union interp_ret ejit_run(struct ejit_func *f, size_t argc, struct ejit_arg args[argc], - struct interp_state *state, bool run, void ***labels_wb); |