fix merge issue
[c11tester.git] / funcnode.cc
index f5fa71279e688e5cce1273d0b7ba54f24321c9f9..e07ab9e22b13c9775e591e35ca81eba44fc43252 100644 (file)
@@ -8,7 +8,7 @@ FuncNode::FuncNode() :
        read_locations()
 {}
 
-/* Check whether FuncInst with the same type, position, and location 
+/* Check whether FuncInst with the same type, position, and location
  * as act has been added to func_inst_map or not. If so, return it;
  * if not, add it and return it.
  *
@@ -62,7 +62,7 @@ void FuncNode::add_entry_inst(FuncInst * inst)
                return;
 
        func_inst_list_mt::iterator it;
-       for (it = entry_insts.begin(); it != entry_insts.end(); it++) {
+       for (it = entry_insts.begin();it != entry_insts.end();it++) {
                if (inst == *it)
                        return;
        }