Hi. Can I know that in Module *M Function* F is a method of StructType *st? Also can I know that in this StructType the F has mark "virtual"? Thanks! Yours sincerely, Kadysev Mikhail -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120302/5c77c3ee/attachment.html>
Hi Михаил,> Can I know that in Module *M Function* F is a method of StructType *st? Also can > I know that in this StructType the F has mark "virtual"?no, LLVM IR is too low level for this. However you may be able to work it out from debug information. Perhaps you should be working at the clang AST level? What do you want to do with this information? Ciao, Duncan.