about summary refs log tree commit diff stats
path: root/cpp/020run
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-24 20:28:40 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-24 20:28:40 -0700
commitceefc4d45ced8b0913f35657d68667de884eddf9 (patch)
treec076a5803ed844c9c741617102088d406b060dfb /cpp/020run
parent46c2c7b6662db0b0f0d8b1f1af40d14ae0aa4d57 (diff)
downloadmu-ceefc4d45ced8b0913f35657d68667de884eddf9.tar.gz
1175
Diffstat (limited to 'cpp/020run')
-rw-r--r--cpp/020run5
1 files changed, 0 insertions, 5 deletions
diff --git a/cpp/020run b/cpp/020run
index eb1dc77d..1ac4ce57 100644
--- a/cpp/020run
+++ b/cpp/020run
@@ -53,13 +53,9 @@ void run_current_routine()
   {
     // Running One Instruction.
     size_t& pc = current_step_index();
-//?     trace("foo") << "2: " << pc << " " << &pc; //? 1
     if (current_instruction().is_label) { ++pc; continue; }
-//?     cout << "AAA " << Trace_stream << " ^" << Trace_stream->dump_layer << "$\n"; //? 1
-//?     trace("foo") << "2.5: " << pc << " " << &pc; //? 1
     trace("run") << "instruction " << current_recipe_name() << '/' << pc;
 //?     cout << "operation " << current_instruction().operation << '\n'; //? 3
-//?     if (!current_instruction().products.empty()) trace("foo") << "AAA product 0 is " << current_instruction().products[0].to_string(); //? 1
     switch (current_instruction().operation) {
       // Primitive Recipe Implementations
       case COPY: {
@@ -73,7 +69,6 @@ void run_current_routine()
         cout << "not a primitive op: " << current_instruction().operation << '\n';
       }
     }
-//?     trace("foo") << "3: " << pc << " " << &pc; //? 1
     ++pc;
   }
   Current_routine = NULL;