]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/vm-data.hpp
Added data constructor to initialize bools in factorvmdata struct
[factor.git] / vm / vm-data.hpp
index 701e35da9d349fcaea87555124b219c020b8aa4d..de5cf36632a7b374e47f1345d868bb9d3005daa8 100644 (file)
@@ -100,6 +100,19 @@ struct factorvmdata {
        cell ic_to_pic_transitions;
        cell pic_to_mega_transitions;
        cell pic_counts[4];  /* PIC_TAG, PIC_HI_TAG, PIC_TUPLE, PIC_HI_TAG_TUPLE */
+
+       factorvmdata() 
+               : profiling_p(false),
+                 secure_gc(false),
+                 gc_off(false),
+                 performing_gc(false),
+                 performing_compaction(false),
+                 collecting_aging_again(false),
+                 growing_data_heap(false),
+                 fep_disabled(false),
+                 full_output(false)
+       {}
+
 };
 
 }