diff options
-rw-r--r-- | 023jump.cc | 1 | ||||
-rw-r--r-- | 030container.cc | 1 | ||||
-rw-r--r-- | 037recipe.cc | 1 | ||||
-rw-r--r-- | 038scheduler.cc | 1 | ||||
-rw-r--r-- | 040brace.cc | 1 | ||||
-rw-r--r-- | 041jump_label.cc | 1 | ||||
-rw-r--r-- | 050scenario.cc | 1 | ||||
-rw-r--r-- | 053continuation.cc | 3 |
8 files changed, 0 insertions, 10 deletions
diff --git a/023jump.cc b/023jump.cc index ba18e439..925906de 100644 --- a/023jump.cc +++ b/023jump.cc @@ -1,7 +1,6 @@ //: Jump primitives :(scenario jump_can_skip_instructions) -#? % Trace_stream->dump_layer = "all"; #? 1 recipe main [ jump 1:offset 1:number <- copy 1 diff --git a/030container.cc b/030container.cc index 61fad420..c89353a3 100644 --- a/030container.cc +++ b/030container.cc @@ -393,7 +393,6 @@ Next_type_ordinal = 1000; :(scenario run_warns_on_unknown_types) % Hide_warnings = true; -#? % Trace_stream->dump_layer = "run"; recipe main [ # integer is not a type 1:integer <- copy 0 diff --git a/037recipe.cc b/037recipe.cc index e342f98f..7ec0191b 100644 --- a/037recipe.cc +++ b/037recipe.cc @@ -22,7 +22,6 @@ recipe f [ reply 3:number ] +mem: storing 34 in location 2 -#? ? :(before "End Mu Types Initialization") // 'recipe' is a literal diff --git a/038scheduler.cc b/038scheduler.cc index 1bde6a4d..5f329bc2 100644 --- a/038scheduler.cc +++ b/038scheduler.cc @@ -217,7 +217,6 @@ recipe f2 [ % Routines.push_back(new routine(f1)); // f1 meant to run % Routines.push_back(new routine(f2)); % Routines.back()->state = COMPLETED; // f2 not meant to run -#? % Trace_stream->dump_layer = "all"; # must have at least one routine without escaping recipe f3 [ 3:number <- copy 0 diff --git a/040brace.cc b/040brace.cc index d674212f..81b9560d 100644 --- a/040brace.cc +++ b/040brace.cc @@ -346,7 +346,6 @@ recipe main [ //: test how things actually run :(scenarios run) :(scenario brace_conversion_and_run) -#? % Trace_stream->dump_layer = "run"; recipe test-factorial [ 1:number <- copy 5 2:number <- copy 1 diff --git a/041jump_label.cc b/041jump_label.cc index 925c88b0..a62a1b59 100644 --- a/041jump_label.cc +++ b/041jump_label.cc @@ -60,7 +60,6 @@ void replace_offset(reagent& x, /*const*/ map<string, long long int>& offset, co :(scenario break_to_label) recipe main [ -#? $print [aaa] { { break +target:label diff --git a/050scenario.cc b/050scenario.cc index 0274fb2e..6a323935 100644 --- a/050scenario.cc +++ b/050scenario.cc @@ -178,7 +178,6 @@ recipe scenario-foo [ //: 'run' interprets a string as a set of instructions :(scenario run) -#? % Trace_stream->dump_layer = "all"; recipe main [ run [ 1:number <- copy 13 diff --git a/053continuation.cc b/053continuation.cc index 20cf1b05..769e09e8 100644 --- a/053continuation.cc +++ b/053continuation.cc @@ -55,7 +55,6 @@ recipe main [ 1:number <- copy 0 2:continuation <- current-continuation { -#? $print 1:number 3:boolean <- greater-or-equal 1:number, 3 break-if 3:boolean 1:number <- add 1:number, 1 @@ -70,7 +69,6 @@ recipe main [ $current-continuation: 1 :(scenario continuation_inside_caller) -#? % Trace_stream->dump_layer = "all"; #? 1 recipe main [ 1:number <- copy 0 2:continuation <- loop-body @@ -131,7 +129,6 @@ recipe g [ 23:number <- add 22:number, 1 reply 23:number ] -#? ? # first call of 'g' executes the part before reply-delimited-continuation +mem: storing 12 in location 21 +run: 2:number <- copy 5 |