search for: _zn10thread_mypassc1ev

Displaying 2 results from an estimated 2 matches for "_zn10thread_mypassc1ev".

2009 Jul 23
2
[LLVMdev] LLVM Module Pass problem!
Dear All, I am new to LLVM and try to write a Module pass. In the same .cpp file I am defining a class. The problem is that whenever I instantiate an object from the class I get the following error while running the pass: opt: symbol lookup error: ../llvm/Debug/lib/MyPass.so: undefined symbol: _ZN10Thread_MyPassC1Ev The pass is compiled correctly but does not run. Could you someone please let me know what is wrong? Thanks in advance, ::Saman -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090723/378881c8/atta...
2009 Jul 23
0
[LLVMdev] LLVM Module Pass problem!
...M and try to write a Module pass. In the same .cpp file > I am defining a class. > The problem is that whenever I instantiate an object from the class I > get the following error while running the pass: > > opt: symbol lookup error: ../llvm/Debug/lib/MyPass.so: undefined > symbol: _ZN10Thread_MyPassC1Ev > > The pass is compiled correctly but does not run. Could you someone > please let me know what is wrong? Are the methods of your class defined within the same .cpp file or in another .cpp file? It appears that your pass is referencing those methods but that they are not included within...