about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-11-07 12:04:52 -0800
committerKartik K. Agaram <vc@akkartik.com>2014-11-07 12:04:52 -0800
commitdd2c77440794c4deb595997a32bc06f4f35bef9a (patch)
tree12b7c8bf782889a72e3e47c3e2648e1f994e96c0
parent203347464f379a42639c98532c0602bccaa6cf33 (diff)
downloadmu-dd2c77440794c4deb595997a32bc06f4f35bef9a.tar.gz
255
As per 248, ignoring output values can reduce some of the pressure of
dealing with raw locations.
-rw-r--r--mu.arc.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/mu.arc.t b/mu.arc.t
index 70a38f4d..0931ffdd 100644
--- a/mu.arc.t
+++ b/mu.arc.t
@@ -1906,11 +1906,11 @@
       ((3 tagged-value-address) <- new-tagged-value (integer-address literal) (2 integer-address))
       ((1 channel-address deref) <- write (1 channel-address deref) (3 tagged-value-address deref))
       ((4 boolean) <- get (1 channel-address deref) (read-watch offset))
-      ((5 tagged-value) (1 channel-address deref) <- read (1 channel-address deref))
-      ((7 integer) <- get (1 channel-address deref) (read-watch offset)))))
+      (_ (1 channel-address deref) <- read (1 channel-address deref))
+      ((5 integer) <- get (1 channel-address deref) (read-watch offset)))))
 (run 'main)
 (if (or (~is nil memory*.4)
-        (~is t memory*.7))
+        (~is t memory*.5))
   (prn "F - 'read' sets channel watch"))
 
 (reset)  ; end file with this to persist the trace for the final test