summary refs log tree commit diff
path: root/lisc/lisc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/lisc.h')
-rw-r--r--lisc/lisc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index edac623..5702182 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -216,6 +216,8 @@ enum Op {
 	ORem,
 	OMul,
 	OAnd,
+	OOr,
+	OXor,
 	OCmpw,
 	OCmpw1 = OCmpw + NICmp-1,
 	OCmpl,
@@ -248,6 +250,11 @@ enum Op {
 	OExtub,
 #define isext(o) (OExtsw <= o && o <= OExtub)
 
+	OExts,
+	OTruncd,
+	OFtosi,
+	OSitof,
+
 	OAlloc,
 	OAlloc1 = OAlloc + NAlign-1,