search for: instrllvm_vm_multi

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

2012 Oct 29
0
[LLVMdev] Undefined symbol when calling recalculate method on DominatorTreeBase
Hi, I'm working on moving a llvm pass from llvm 2.8 to llvm 3.1, and I'm getting this runtime error: opt: symbol lookup error: /......./llvm/Release+Asserts/lib/InstrLLVM_VM_multi.so: undefined symbol: _ZN4llvm17DominatorTreeBaseINS_10BasicBlockEE5resetEv The error happens when calling the next function: void rebuildDT(DominatorTree* DT, Function *parFunc) { DT->getBase().recalculate(*parFunc); } All the code executes normally until the first call to th...