search for: funsetmap

Displaying 3 results from an estimated 3 matches for "funsetmap".

2002 Nov 16
2
[LLVMdev] question
...39;: ../../../include/llvm/Analysis/DSGraph.h:38: `void DSGraph::operator=(const DSGraph&)' is private MemLeakage.cpp:87: within this context gmake: *** [Debug/MemLeakage.o] Error 1 I don't understand what this means. Basically what I did is I defined: map<Function *, DSGraph> funsetmap; and I was trying to assign the DSGraph for each function to the map. funsetmap[&F] = dsg; Could you tell me what's wrong how to fix this? Another question is that when I iterate on the graph using this for (DSNode::iterator I = N->begin(), E = N->end(); I != E; ++I) if (I-&gt...
2002 Nov 16
5
[LLVMdev] question
...: `void > } DSGraph::operator=(const > } DSGraph&)' is private > } MemLeakage.cpp:87: within this context > } gmake: *** [Debug/MemLeakage.o] Error 1 > } > } I don't understand what this means. Basically what I did is I defined: > } map<Function *, DSGraph> funsetmap; > } and I was trying to assign the DSGraph for each function to the map. > } funsetmap[&F] = dsg; > } Could you tell me what's wrong how to fix this? > } > You're invoking the copy constructor in this code snippet: > > funsetmap[&F] = dsg; > > That is...
2002 Nov 16
0
[LLVMdev] question
...include/llvm/Analysis/DSGraph.h:38: `void } DSGraph::operator=(const } DSGraph&)' is private } MemLeakage.cpp:87: within this context } gmake: *** [Debug/MemLeakage.o] Error 1 } } I don't understand what this means. Basically what I did is I defined: } map<Function *, DSGraph> funsetmap; } and I was trying to assign the DSGraph for each function to the map. } funsetmap[&F] = dsg; } Could you tell me what's wrong how to fix this? } You're invoking the copy constructor in this code snippet: funsetmap[&F] = dsg; That is, the copy constructor for dsg (which I ta...