about summary refs log tree commit diff stats
path: root/026assert.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-07 10:40:45 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-07 12:47:13 -0700
commit8833d01ccf23a9348572d1cd3c34342b4ae2e6e3 (patch)
tree2b4e70fd7a1f324886ae45a982eb28b30e051f16 /026assert.cc
parent1179f0d456004bf0a7edd92fc083047ac8992801 (diff)
downloadmu-8833d01ccf23a9348572d1cd3c34342b4ae2e6e3.tar.gz
1296 - roll back 1295
Diffstat (limited to '026assert.cc')
-rw-r--r--026assert.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/026assert.cc b/026assert.cc
index b736e1cd..6ab49db2 100644
--- a/026assert.cc
+++ b/026assert.cc
@@ -11,7 +11,6 @@ ASSERT,
 Recipe_number["assert"] = ASSERT;
 :(before "End Primitive Recipe Implementations")
 case ASSERT: {
-  assert(!current_instruction().ingredients.empty());
   trace("run") << "ingredient 0 is " << current_instruction().ingredients[0].name;
   vector<long long int> arg0 = read_memory(current_instruction().ingredients[0]);
   assert(arg0.size() == 1);