about summary refs log tree commit diff stats
path: root/032array.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-01-11 22:57:35 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-01-11 22:57:35 -0800
commitb94ea5c81bc80deae70a3cdca060d0ceb0406939 (patch)
treeecf556ae8bd7cf682b7aafaac720003a65cde7d2 /032array.cc
parent5e1c9b1866744343d81ea9df6f78ab3b2a4b38dc (diff)
downloadmu-b94ea5c81bc80deae70a3cdca060d0ceb0406939.tar.gz
2555
Diffstat (limited to '032array.cc')
-rw-r--r--032array.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/032array.cc b/032array.cc
index d1fec2f5..f5fe2775 100644
--- a/032array.cc
+++ b/032array.cc
@@ -219,7 +219,7 @@ recipe main [
   5:number <- copy 14
   6:number <- copy 15
   7:number <- copy 16
-  8:address:array:point <- copy 1
+  8:address:array:point <- copy 1/unsafe
   index *8:address:array:point, 4  # less than size of array in locations, but larger than its length in elements
 ]
 +error: main: invalid index 4
@@ -339,7 +339,7 @@ recipe main [
   5:number <- copy 14
   6:number <- copy 15
   7:number <- copy 16
-  8:address:array:point <- copy 1  # unsafe
+  8:address:array:point <- copy 1/unsafe
   index-address *8:address:array:point, 4  # less than size of array in locations, but larger than its length in elements
 ]
 +error: main: invalid index 4