]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/code_blocks.cpp
VM: Remove redundant #ifdef FACTOR_DEBUGs
[factor.git] / vm / code_blocks.cpp
index 9a30a9f891ec479501098eb535d099cdf695a86e..17175d2f1e16666e564293ae4c051b9b760a33cb 100644 (file)
@@ -73,13 +73,13 @@ cell factor_vm::code_block_owner(code_block* compiled) {
   if (owner.type_p(QUOTATION_TYPE)) {
     tagged<quotation> quot(owner.as<quotation>());
     tagged<array> elements(quot->array);
-#ifdef FACTOR_DEBUG
+
     FACTOR_ASSERT(array_capacity(elements.untagged()) == 5);
     FACTOR_ASSERT(array_nth(elements.untagged(), 4) ==
                       special_objects[PIC_MISS_WORD] ||
                   array_nth(elements.untagged(), 4) ==
                       special_objects[PIC_MISS_TAIL_WORD]);
-#endif
+
     tagged<wrapper> word_wrapper(array_nth(elements.untagged(), 0));
     return word_wrapper->object;
   } else