about summary refs log tree commit diff stats
path: root/029tools.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-08-26 01:43:43 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-08-26 01:43:43 -0700
commit380b0b636691ac115b179306e4cfa38e675e43b5 (patch)
tree5fea02a1b966e4285b221d3ec6ead12879877dbc /029tools.cc
parent81b1975fc540a4db7af5c747ba26c63a3002d708 (diff)
downloadmu-380b0b636691ac115b179306e4cfa38e675e43b5.tar.gz
2079
Cleanup 2078.
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;
-}