aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/parser.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-09 19:27:47 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-09 19:27:47 -0500
commitc5e10679c7e10345e9bf6db4efeda4f5ee7d573c (patch)
treebc2ca275730568990e0acf25cba360df1b61cd75 /libalee/parser.cpp
parent76dfbba52449acb1f4c31eabf42f678060559ec3 (diff)
packed literals again
Diffstat (limited to 'libalee/parser.cpp')
-rw-r--r--libalee/parser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/libalee/parser.cpp b/libalee/parser.cpp
index d709d45..a9c9aaa 100644
--- a/libalee/parser.cpp
+++ b/libalee/parser.cpp
@@ -111,12 +111,12 @@ int Parser::parseNumber(State& state, Word word)
if (state.compiling()) {
auto ins = CoreWords::findi("_lit");
- //if (l >= 0 && l < 0xFF) {
- // state.dict.add(ins | ((l + 1) << 8));
- //} else {
+ if (value >= 0 && value < static_cast<Cell>(Dictionary::Begin - CoreWords::WordCount)) {
+ state.dict.add(value + CoreWords::WordCount);
+ } else {
state.dict.add(ins);
state.dict.add(value);
- //}
+ }
} else {
state.push(value);
}