about summary refs log tree commit diff stats
path: root/cpp/043space
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-24 10:19:03 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-24 10:19:03 -0700
commit88be3dbc0c996490dbac97538f4d712a5b4f6f07 (patch)
treedbba8f597d3090bb71553544ba28c59644973b3b /cpp/043space
parente351d6fd04d95068fac4402dc103e0752182fa8d (diff)
downloadmu-88be3dbc0c996490dbac97538f4d712a5b4f6f07.tar.gz
1162
Diffstat (limited to 'cpp/043space')
-rw-r--r--cpp/043space10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/043space b/cpp/043space
index 4db3c725..f749b265 100644
--- a/cpp/043space
+++ b/cpp/043space
@@ -2,7 +2,7 @@
 //: and all addresses in arguments are implicitly based on the 'default-space'
 //: (unless they have the /raw property)
 
-:(scenario "set_default_space")
+:(scenario set_default_space)
 # if default-space is 10, and if an array of 5 locals lies from location 11 to 15 (inclusive),
 # then location 0 is really location 11, location 1 is really location 12, and so on.
 recipe main [
@@ -12,7 +12,7 @@ recipe main [
 ]
 +mem: storing 23 in location 12
 
-:(scenario "deref_sidesteps_default_space")
+:(scenario deref_sidesteps_default_space)
 recipe main [
   # pretend pointer from outside
   3:integer <- copy 34:literal
@@ -53,7 +53,7 @@ result.properties.push_back(pair<string, vector<string> >("raw", vector<string>(
 
 //:: fix 'get'
 
-:(scenario "deref_sidesteps_default_space_in_get")
+:(scenario deref_sidesteps_default_space_in_get)
 recipe main [
   # pretend pointer to container from outside
   12:integer <- copy 34:literal
@@ -72,7 +72,7 @@ tmp.properties.push_back(pair<string, vector<string> >("raw", vector<string>()))
 
 //:: fix 'index'
 
-:(scenario "deref_sidesteps_default_space_in_index")
+:(scenario deref_sidesteps_default_space_in_index)
 recipe main [
   # pretend pointer to array from outside
   12:integer <- copy 2:literal
@@ -115,7 +115,7 @@ int address(int offset, int base) {
     return;
   }
 
-:(scenario "get_default_space")
+:(scenario get_default_space)
 recipe main [
   default-space:address:array:location <- copy 10:literal
   1:integer/raw <- copy default-space:address:array:location