search for: depbb

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

Did you mean: defbb
2013 Jan 18
0
[LLVMdev] llvm getDependency() for ICMP instructions is UNKNOWN
........ if (!Res.isNonLocal()) { Deps[Inst].insert(std::make_pair(getInstTypePair(Res), static_cast<BasicBlock *>(0))); } else //it does not enter here ..... ..... errs()<<*Inst; errs() << DepTypeStr[type]; if (DepBB) { errs() << DepBB; } if (DepInst) { errs() << *DepInst; ..... It prints all the imcp instructions and UNKNOWN. So I think I cannot use http://llvm.org/docs/doxygen/html/MemoryDependenceAnalysis_8h_source.html#l00151for ICMP. Do you know if I can use this method or a...