Displaying 1 result from an estimated 1 matches for "list_node".
Did you mean:
hlist_node
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....