From e3b8ea4904deec4fb071ef2f8433cafca26c9b7c Mon Sep 17 00:00:00 2001
From: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Sun, 9 Aug 2015 16:42:12 -0400
Subject: [PATCH] parse variants of store

---
 lisc/parse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisc/parse.c b/lisc/parse.c
index 3b19aaa..d4a0a22 100644
--- a/lisc/parse.c
+++ b/lisc/parse.c
@@ -365,7 +365,7 @@ parseline(PState ps)
 		err("label or end of file expected");
 	switch (t) {
 	default:
-		if (t == OStore || t == OCopy) {
+		if (t == OStore || t == OStores || t == OStoreb) {
 			/* operations without result */
 			r = R;
 			op = t;