commit e400e177b60cfe3da56c12aca0a9321c2acabcfe
parent 4be29d40305917d3c4bdb9e9c795ea68e415c748
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Mon, 22 Feb 2016 13:55:18 -0500
use isstore() in parser
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisc/parse.c b/lisc/parse.c
@@ -478,7 +478,7 @@ parseline(PState ps)
err("label or } expected");
switch (t) {
default:
- if (OStored <= t && t <= OStoreb) {
+ if (isstore(t)) {
/* operations without result */
r = R;
k = 0;