about summary refs log tree commit diff stats
path: root/026call.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-12-07 13:45:01 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-12-07 13:45:01 -0800
commit2a81a54726fdb8ad94bee9efc85020a808c618b5 (patch)
treedc1637ba98d37a675cd4efb51f07fe735ff6816b /026call.cc
parent08a8cb2a8c5e266a3dbc3b661c326b1ef9b39d5c (diff)
downloadmu-2a81a54726fdb8ad94bee9efc85020a808c618b5.tar.gz
4148
Diffstat (limited to '026call.cc')
-rw-r--r--026call.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/026call.cc b/026call.cc
index 96fd8660..3ae636b8 100644
--- a/026call.cc
+++ b/026call.cc
@@ -216,7 +216,11 @@ case _DUMP_CALL_STACK: {
 }
 :(before "End Primitive Recipe Implementations")
 case _DUMP_CALL_STACK: {
-  for (call_stack::const_reverse_iterator p = Current_routine->calls.rbegin(); p != Current_routine->calls.rend(); ++p)
-    cerr << get(Recipe, p->running_recipe).name << ":" << p->running_step_index << " -- " << to_string(to_instruction(*p)) << '\n';
+  dump(Current_routine->calls);
   break;
 }
+:(code)
+void dump(const call_stack& calls) {
+  for (call_stack::const_reverse_iterator p = calls.rbegin(); p != calls.rend(); ++p)
+    cerr << get(Recipe, p->running_recipe).name << ":" << p->running_step_index << " -- " << to_string(to_instruction(*p)) << '\n';
+}