search for: doxgen

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

Did you mean: doxygen
2015 Jun 02
2
[LLVMdev] MDNodeFwdDecl
...ns are: 1. What is exactly the MDNodeFwdDecl ? I saw it's in the latest release 3.6.1, but I also found this link http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20150119/253730.html saying that MDNodeFwdDecl has been removed, and neither can I find class reference of it on the llvm doxgen website. So is it still valid ?? 2. How and when will it be generated when I use DIBuilder module ? Thanks -- Best regards Hui Zhang -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150602/086788ec/att...
2015 Jun 02
2
[LLVMdev] MDNodeFwdDecl
...; 1. What is exactly the MDNodeFwdDecl ? I saw it's in the latest release 3.6.1, but I also found this link http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20150119/253730.html > saying that MDNodeFwdDecl has been removed, and neither can I find class reference of it on the llvm doxgen website. So is it still valid ?? > > 2. How and when will it be generated when I use DIBuilder module ? I suspect you've neglected to call `DIBuilder::finalize()`. On trunk, `isa<MDNodeFwdDecl>(N)` has become `N.isTemporary()`. There are a number of temporaries created in the de...