bug fix
[c11tester.git] / funcnode.h
index a87c0306db9284b9f746cfe27a72073baac659fb..be6f406a4e3453b029247e8e23550deb9186cd99 100644 (file)
@@ -23,6 +23,7 @@ public:
        func_inst_list_mt * get_inst_list() { return &inst_list; }
        func_inst_list_mt * get_entry_insts() { return &entry_insts; }
        void add_entry_inst(FuncInst * inst);
+       void link_insts(func_inst_list_t * inst_list);
 
        void store_read(ModelAction * act, uint32_t tid);
        uint64_t query_last_read(ModelAction * act, uint32_t tid);
@@ -35,7 +36,7 @@ private:
        uint32_t func_id;
        const char * func_name;
 
-       /* Use source line number as the key of hashtable, to check if 
+       /* Use source line number as the key of hashtable, to check if
         * atomic operation with this line number has been added or not
         */
        HashTable<const char *, FuncInst *, uintptr_t, 4, model_malloc, model_calloc, model_free> func_inst_map;