diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-08-09 16:42:12 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:30 -0400 |
commit | e3b8ea4904deec4fb071ef2f8433cafca26c9b7c (patch) | |
tree | 1620b3c4e1dc9bc9464b98e60e5a4e06de718a52 | |
parent | a69fe2c6c53ecad229c4477d541721084bba02df (diff) | |
download | roux-e3b8ea4904deec4fb071ef2f8433cafca26c9b7c.tar.gz |
parse variants of store
-rw-r--r-- | lisc/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |