From 81a324bec3e992d6a979830c5bcae89ac7cdf40c Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Wed, 13 Sep 2017 21:11:24 -0700 Subject: 3995 --- html/020run.cc.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'html/020run.cc.html') diff --git a/html/020run.cc.html b/html/020run.cc.html index d55ea087..418d1eae 100644 --- a/html/020run.cc.html +++ b/html/020run.cc.html @@ -127,7 +127,7 @@ if ('onhashchange' in window) { 60 } 61 62 void run_current_routine() { - 63 while (should_continue_running(Current_routine)) { // beware: may modify Current_routine + 63 while (should_continue_running(Current_routine)) { // beware: may modify Current_routine 64 ¦ // Running One Instruction 65 ¦ if (current_instruction().is_label) { ++current_step_index(); continue; } 66 ¦ trace(Initial_callstack_depth + Trace_stream->callstack_depth, "run") << to_string(current_instruction()) << end(); @@ -183,7 +183,7 @@ if ('onhashchange' in window) { 116 117 :(code) 118 //: hook replaced in a later layer -119 bool should_continue_running(const routine* current_routine) { +119 bool should_continue_running(const routine* current_routine) { 120 assert(current_routine == Current_routine); // argument passed in just to make caller readable above 121 return !Current_routine->completed(); 122 } @@ -282,10 +282,10 @@ if ('onhashchange' in window) { 215 } 216 trace(2, "run") << "=== Starting to run" << end(); 217 assert(Num_calls_to_transform_all == 1); -218 run_main(argc, argv); +218 run_main(argc, argv); 219 } 220 :(code) -221 void run_main(int argc, char* argv[]) { +221 void run_main(int argc, char* argv[]) { 222 recipe_ordinal r = get(Recipe_ordinal, "main"); 223 if (r) run(r); 224 } -- cgit 1.4.1-2-gfad0