about summary refs log tree commit diff stats
path: root/031address.cc
diff options
context:
space:
mode:
Diffstat (limited to '031address.cc')
-rw-r--r--031address.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/031address.cc b/031address.cc
index c074fe76..b01bc036 100644
--- a/031address.cc
+++ b/031address.cc
@@ -139,7 +139,9 @@ recipe main [
 ]
 +mem: storing 34 in location 4
 
-:(after "reagent base = " following "case GET:")
+:(after "Update GET base in Check")
+if (!canonize_type(base)) break;
+:(after "Update GET base in Run")
 base = canonize(base);
 
 :(scenario get_address_indirect)
@@ -152,7 +154,9 @@ recipe main [
 ]
 +mem: storing 2 in location 4
 
-:(after "reagent base = " following "case GET_ADDRESS:")
+:(after "Update GET_ADDRESS base in Check")
+if (!canonize_type(base)) break;
+:(after "Update GET_ADDRESS base in Run")
 base = canonize(base);
 
 //:: abbreviation for '/lookup': a prefix '*'
me/COPYHEADER?id=cbcc3a1e1a82b01eea370bf7841e6b5f4d1e46c1'>^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38