about summary refs log tree commit diff stats
path: root/028call_reply.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-07-22 22:42:34 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-07-22 22:42:34 -0700
commitd8f7ec8ec9251e4f4aef179e83d291c7518e984e (patch)
tree950ef4f910f2a1e0168bbe56532c8ca8ce56bb28 /028call_reply.cc
parentefa4e1242cc78735910927c04b7f9c3e7e58e336 (diff)
downloadmu-d8f7ec8ec9251e4f4aef179e83d291c7518e984e.tar.gz
3136
Diffstat (limited to '028call_reply.cc')
-rw-r--r--028call_reply.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/028call_reply.cc b/028call_reply.cc
index 28333b32..636b7fee 100644
--- a/028call_reply.cc
+++ b/028call_reply.cc
@@ -35,10 +35,8 @@ case RETURN: {
   Current_routine->calls.pop_front();
   // just in case 'main' returns a value, drop it for now
   if (Current_routine->calls.empty()) goto stop_running_current_routine;
-  const instruction& caller_instruction = current_instruction();
   for (int i = 0; i < SIZE(ingredients); ++i)
     trace(9998, "run") << "result " << i << " is " << to_string(ingredients.at(i)) << end();
-
   // make reply products available to caller
   copy(ingredients.begin(), ingredients.end(), inserter(products, products.begin()));
   // End Reply