about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-11 22:56:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-11 22:56:38 -0700
commit3abbbb5d4b6267d68b26e31b09ac1b88c4188de9 (patch)
tree162e2eb11305f084b499c157cbc15c7754ca983f
parenta3d52c9028312706b45497c6b2205b8b165ef348 (diff)
downloadmu-3abbbb5d4b6267d68b26e31b09ac1b88c4188de9.tar.gz
1350
-rw-r--r--023jump.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/023jump.cc b/023jump.cc
index 8349f44e..807113f3 100644
--- a/023jump.cc
+++ b/023jump.cc
@@ -42,7 +42,6 @@ Recipe_number["jump-if"] = JUMP_IF;
 :(before "End Primitive Recipe Implementations")
 case JUMP_IF: {
   assert(current_instruction().ingredients.at(1).initialized);
-  trace("AAA") << current_instruction().to_string() << '\n';
   assert(ingredients.size() == 2);
   assert(ingredients.at(0).size() == 1);  // scalar
   if (!ingredients.at(0).at(0)) {