summary refs log tree commit diff
path: root/lisc/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/parse.c')
-rw-r--r--lisc/parse.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisc/parse.c b/lisc/parse.c
index ae9f27b..8ffdb74 100644
--- a/lisc/parse.c
+++ b/lisc/parse.c
@@ -18,6 +18,8 @@ OpDesc opdesc[NOp] = {
 	[ORem]    = { "rem",    2, 2 },
 	[OMul]    = { "mul",    2, 2 },
 	[OAnd]    = { "and",    2, 2 },
+	[OSext]   = { "sext",   1, 1 },
+	[OZext]   = { "zext",   1, 1 },
 	[OStorel] = { "storel", 2, 0 },
 	[OStorew] = { "storew", 2, 0 },
 	[OStores] = { "stores", 2, 0 },