diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-22 13:55:18 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-22 13:55:18 -0500 |
commit | e400e177b60cfe3da56c12aca0a9321c2acabcfe (patch) | |
tree | aace444836b5f15b974a7fef75d4c76bc31fd4f6 /lisc | |
parent | 4be29d40305917d3c4bdb9e9c795ea68e415c748 (diff) | |
download | roux-e400e177b60cfe3da56c12aca0a9321c2acabcfe.tar.gz |
use isstore() in parser
Diffstat (limited to 'lisc')
-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 96e70b6..1f2e557 100644 --- 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; |