summary refs log tree commit diff
path: root/all.h
diff options
context:
space:
mode:
Diffstat (limited to 'all.h')
-rw-r--r--all.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/all.h b/all.h
index a038612..887d680 100644
--- a/all.h
+++ b/all.h
@@ -264,8 +264,12 @@ enum Op {
 	/* function instructions */
 	Opar = NPubOp,
 	Oparc,
+	Opare,
+#define ispar(o) (Opar <= o && o <= Opare)
 	Oarg,
 	Oargc,
+	Oarge,
+#define isarg(o) (Oarg <= o && o <= Oarge)
 	Ocall,
 	Ovacall,