about summary refs log tree commit diff stats
path: root/028call_return.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-06-15 22:16:09 -0700
committerKartik Agaram <vc@akkartik.com>2018-06-15 22:16:09 -0700
commitce9b2b0515eaf92a9c68c8608fd9bf392c941d50 (patch)
treeeb1899f86308c712e54ef94a1c85243c26621c45 /028call_return.cc
parent0edd9b9fc60440213e4df926ea511419ee291f1e (diff)
downloadmu-ce9b2b0515eaf92a9c68c8608fd9bf392c941d50.tar.gz
4258 - undo 4257
Diffstat (limited to '028call_return.cc')
-rw-r--r--028call_return.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/028call_return.cc b/028call_return.cc
index aa5cb584..c8c1bca6 100644
--- a/028call_return.cc
+++ b/028call_return.cc
@@ -52,10 +52,6 @@ case RETURN: {
     trace(9998, "run") << "result " << i << " is " << to_string(ingredients.at(i)) << end();
   // make return products available to caller
   copy(ingredients.begin(), ingredients.end(), inserter(products, products.begin()));
-  for (int i = 0;  i < SIZE(current_instruction().products);  ++i) {
-    if (is_mu_address(current_instruction().products.at(i)) && scalar(ingredients.at(i)))
-      products.at(i).insert(products.at(i).begin(), /*alloc id*/0);
-  }
   // End Return
   break;  // continue to process rest of *caller* instruction
 }