about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-09 21:31:21 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-09 21:31:31 -0800
commitb0450faf28ba629374adb025a3127a9a244c6380 (patch)
tree2f471db21e3d72e909c553f38eb320adb94eb123 /010vm.cc
parentc1720b71386b51a7e1da814f8257799d30e6013d (diff)
downloadmu-b0450faf28ba629374adb025a3127a9a244c6380.tar.gz
2413 - another backfilled test for 2391
This time for the support for 'new' that was added in 2393.
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/010vm.cc b/010vm.cc
index 6512158c..92721d32 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -434,6 +434,7 @@ string instruction::to_string() const {
 string debug_string(const recipe& x) {
   ostringstream out;
   out << "recipe " << x.name << '\n';
+  // Begin debug_string(recipe x)
   for (long long int index = 0; index < SIZE(x.steps); ++index) {
     const instruction& inst = x.steps.at(index);
     out << "  inst: " << inst.to_string() << '\n';