about summary refs log tree commit diff stats
path: root/029tools.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-05 22:50:58 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-05 22:50:58 -0700
commit164bf99fef53fe500f8f4759f5588b1cbe9323e7 (patch)
treef07e9ceed06f730b1824418f11cc0a049e0328a0 /029tools.cc
parentec5e0d13b621ef80d30f27b7cdd6edfda34195c8 (diff)
downloadmu-164bf99fef53fe500f8f4759f5588b1cbe9323e7.tar.gz
2253 - start reorganizing traces
Diffstat (limited to '029tools.cc')
-rw-r--r--029tools.cc31
1 files changed, 0 insertions, 31 deletions
diff --git a/029tools.cc b/029tools.cc
index 92c29963..17dea6ef 100644
--- a/029tools.cc
+++ b/029tools.cc
@@ -118,37 +118,6 @@ case SHOW_WARNINGS: {
 }
 
 :(before "End Primitive Recipe Declarations")
-_START_TRACING,
-:(before "End Primitive Recipe Numbers")
-Recipe_ordinal["$start-tracing"] = _START_TRACING;
-:(before "End Primitive Recipe Checks")
-case _START_TRACING: {
-  break;
-}
-:(before "End Primitive Recipe Implementations")
-case _START_TRACING: {
-  if (current_instruction().ingredients.empty())
-    Trace_stream->dump_layer = "all";
-  else
-    Trace_stream->dump_layer = current_instruction().ingredients.at(0).name;
-  break;
-}
-
-:(before "End Primitive Recipe Declarations")
-_STOP_TRACING,
-:(before "End Primitive Recipe Numbers")
-Recipe_ordinal["$stop-tracing"] = _STOP_TRACING;
-:(before "End Primitive Recipe Checks")
-case _STOP_TRACING: {
-  break;
-}
-:(before "End Primitive Recipe Implementations")
-case _STOP_TRACING: {
-  Trace_stream->dump_layer = "";
-  break;
-}
-
-:(before "End Primitive Recipe Declarations")
 _CLOSE_TRACE,
 :(before "End Primitive Recipe Numbers")
 Recipe_ordinal["$close-trace"] = _CLOSE_TRACE;