about summary refs log tree commit diff stats
path: root/029tools.cc
diff options
context:
space:
mode:
Diffstat (limited to '029tools.cc')
-rw-r--r--029tools.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/029tools.cc b/029tools.cc
index 232c484b..12840d90 100644
--- a/029tools.cc
+++ b/029tools.cc
@@ -260,23 +260,3 @@ case _DUMP_MEMORY: {
   dump_memory();
   break;
 }
-
-:(before "End Primitive Recipe Declarations")
-_LOG,
-:(before "End Primitive Recipe Numbers")
-Recipe_ordinal["$log"] = _LOG;
-:(before "End Primitive Recipe Implementations")
-case _LOG: {
-//?   ofstream fout("log", ofstream::app);
-//?   for (long long int i = 0; i < SIZE(current_instruction().ingredients); ++i) {
-//?     fout << print_mu(current_instruction().ingredients.at(i), ingredients.at(i));
-//?   }
-//?   fout << '\n';
-//?   fout.close();
-  ostringstream out;
-  for (long long int i = 0; i < SIZE(current_instruction().ingredients); ++i) {
-    out << print_mu(current_instruction().ingredients.at(i), ingredients.at(i));
-  }
-  trace(1, "app") << out.str() << end();
-  break;
-}