about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--035lookup.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/035lookup.cc b/035lookup.cc
index 7247b6a7..650b8549 100644
--- a/035lookup.cc
+++ b/035lookup.cc
@@ -82,7 +82,6 @@ void lookup_memory(reagent& x) {
 }
 
 void lookup_memory_core(reagent& x, bool check_for_null) {
-  if (x.value == 0) return;
   trace("mem") << "location " << x.value << " is " << no_scientific(get_or_insert(Memory, x.value)) << end();
   x.set_value(get_or_insert(Memory, x.value));
   if (check_for_null && x.value == 0) {