File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ ### Lity 1.2.2 (2018-09-25)
2
+
3
+ Language Features:
4
+ * Rule:
5
+ - Implement update clause for rule
6
+ - Implement multi-pattern grammar
7
+ * Validator Only Contract:
8
+ - Provide ` isValidator() ` to support validator only contract
9
+
10
+ Bugfixes:
11
+ * Fix debug code for new Pattern API
12
+ * Fix SimplificationRuleList preset rules for add/sub overflow errors
13
+
14
+ Refactoring:
15
+ * Refine the architecture of RuleEngineCompiler
16
+ * Replace naive memory address for rule with stack variable
17
+ * Uninline rule network node
18
+
1
19
### Lity 1.2.1 (2018-08-30)
2
20
3
21
Features:
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ void DynArrUtils::incrLen()
141
141
m_context << Instruction::MSTORE;
142
142
}
143
143
144
- // Stack post: memory_offset
144
+ // Stack post: memory_pre
145
145
// Stack post: elmt
146
146
void DynArrUtils::extractElmtToStack ()
147
147
{
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class DynArrUtils
61
61
// / Stack post: memory_offset
62
62
void accessIndex (bool _doBoundsCheck = true );
63
63
64
- // / Stack post: memory_offset
64
+ // / Stack post: memory_pre
65
65
// / Stack post: elmt
66
66
void extractElmtToStack ();
67
67
// / For each element do f.
You can’t perform that action at this time.
0 commit comments