File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -88,16 +88,16 @@ have to support 32-bit memory addresses in their ABI.
88
88
* [Memory page limits][valid limits] and [Table entry limits][valid limits] are
89
89
classified by their respective address types
90
90
- ```
91
- ⊦ it : k n <= k (m <= k)? (n < m)?
91
+ ⊦ at : k n <= k (m <= k)? (n < m)?
92
92
-------------------------------------------
93
- ⊦ { min n, max m? } : it
93
+ ⊦ { min n, max m? } : at
94
94
```
95
95
96
96
* Memory and Table types are validated accordingly:
97
97
- ```
98
- ⊦ limits : it
98
+ ⊦ limits : at
99
99
--------------
100
- ⊦ it limits ok
100
+ ⊦ at limits ok
101
101
```
102
102
103
103
* All [memory instructions][valid meminst] are changed to use the address type,
@@ -195,11 +195,11 @@ have to support 32-bit memory addresses in their ABI.
195
195
----------------------------------
196
196
C ⊦ tables.fill x : [at t at] → []
197
197
```
198
- - table.copy x y
198
+ - table.copy d s
199
199
- ```
200
- C.tables[d] = aN limits t C.tables[s] = aM limits t K = min {aN, AM }
200
+ C.tables[d] = aD limits t C.tables[s] = aS limits t aN = min {aD, aS }
201
201
-----------------------------------------------------------------------------
202
- C ⊦ table.copy d s : [aN aM aK ] → []
202
+ C ⊦ table.copy d s : [aD aS aN ] → []
203
203
```
204
204
- table.init x y
205
205
- ```
You can’t perform that action at this time.
0 commit comments