summaryrefslogtreecommitdiffstats
path: root/opcode.c
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2012-11-25 23:07:43 +0000
committerStephen Dolan <mu@netsoc.tcd.ie>2012-11-25 23:07:43 +0000
commitf19ba32fdde2bfea89e6c10a9183d130b6de99aa (patch)
treee9684fba300a9b2a52b3df44c07b37f8a8cb97ce /opcode.c
parent72691b490943bcaa921a53375585cac83327c432 (diff)
Minor refactor of function call setup to allow for multiple arguments.
Diffstat (limited to 'opcode.c')
-rw-r--r--opcode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/opcode.c b/opcode.c
index bc259c22..6e85e709 100644
--- a/opcode.c
+++ b/opcode.c
@@ -7,6 +7,7 @@
#define BRANCH OP_HAS_BRANCH, 2
#define CFUNC (OP_HAS_SYMBOL | OP_HAS_CFUNC | OP_HAS_VARIABLE_LENGTH_ARGLIST), 2
#define UFUNC (OP_HAS_UFUNC | OP_HAS_VARIABLE_LENGTH_ARGLIST), 2
+#define CALLSEQ_END_IMM (OP_IS_CALL_PSEUDO), 0
#define CLOSURE_PARAM_IMM (OP_IS_CALL_PSEUDO | OP_HAS_BINDING), 0
#define CLOSURE_CREATE_IMM (OP_HAS_BLOCK | OP_IS_CALL_PSEUDO | OP_HAS_BINDING), 0
#define CLOSURE_CREATE_C_IMM (OP_IS_CALL_PSEUDO | OP_HAS_BINDING), 0