search for: list_nod

Displaying 1 result from an estimated 1 matches for "list_nod".

Did you mean: _list_nod
2009 Jan 16
1
[LLVMdev] Problem using ilist container
Hi All, I have just started using LLVM . i am facing a issue while using ilist container. Here is a struct with ilist container as its one element. typedef ilist<Instruction *> InstListType; struct list_node { int Impact; InstListType InstList; }; list_node *BB_list=new struct list_node[10]; Instruction *user= { pointing to some instruction object } //trying to add instruction pointer to ilist...