Implemented loads with register offsets
This commit is contained in:
23
tests/programs/array-index-dynamic.q
Normal file
23
tests/programs/array-index-dynamic.q
Normal file
@ -0,0 +1,23 @@
|
||||
import mem
|
||||
|
||||
main() {
|
||||
a := mem.alloc(4)
|
||||
i := 0
|
||||
|
||||
a[i] = i * 2
|
||||
i += 1
|
||||
a[i] = i * 2
|
||||
i += 1
|
||||
a[i] = i * 2
|
||||
i += 1
|
||||
a[i] = i * 2
|
||||
|
||||
i = 0
|
||||
assert a[i] == i * 2
|
||||
i += 1
|
||||
assert a[i] == i * 2
|
||||
i += 1
|
||||
assert a[i] == i * 2
|
||||
i += 1
|
||||
assert a[i] == i * 2
|
||||
}
|
Reference in New Issue
Block a user