search for: create_sentinel

Displaying 3 results from an estimated 3 matches for "create_sentinel".

2009 Jul 08
1
[LLVMdev] MAJOR API CHANGE: LLVMContext
...ation. If you do, yes, you can fetch it from the Module or the Function. > If the above is true, then does the GlobalVariable constructor need to > take a Context argument? It seems it should be able to infer it from > the Module argument. The GlobalVariables can be (and are, for the create_sentinel() methods) constructed with null for the Module argument. --Owen -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090708/e790aa1b/attachment.html> -------------- next part -------------- A non-text attac...
2009 Jul 08
0
[LLVMdev] MAJOR API CHANGE: LLVMContext
Owen Anderson wrote: > Notice of a major upcoming API change: The static methods for > constructing types and constants will be going away in the future. > Instead, the global uniquing tables that lurk behind these APIs will > be privatized within LLVMContext instances. > > What this means for you: Your client application will need to create > an LLVMContext in
2009 Jun 30
6
[LLVMdev] MAJOR API CHANGE: LLVMContext
Notice of a major upcoming API change: The static methods for constructing types and constants will be going away in the future. Instead, the global uniquing tables that lurk behind these APIs will be privatized within LLVMContext instances. What this means for you: Your client application will need to create an LLVMContext in main(), and pass it into a few APIs (the constructor for