search for: aabb040f50a7e75ad8d58bfc5d95636a4

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

2011 Sep 08
1
[LLVMdev] Merging Modules
...all into one monolithic Module before transforming and > optimizing (The original Modules must remain unmodified)**** > > > See Linker::LinkModules(..). > Mm, I think LinkModules is destructive to one of its input modules. Try CloneFunction http://llvm.org/doxygen/namespacellvm.html#aabb040f50a7e75ad8d58bfc5d95636a4 maybe? > - > Devang > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > -------------- next part -------------- An HTML...
2011 Sep 08
2
[LLVMdev] Merging Modules
Hi, Can anyone point me to some code (or offer advice) on how I can merge one Module into another? I have a list of Modules each containing one Function. I would like to combine them all into one monolithic Module before transforming and optimizing (The original Modules must remain unmodified) Thanks, paul -------------- next part -------------- An HTML attachment was scrubbed... URL:
2011 Sep 08
0
[LLVMdev] Merging Modules
Hi Paul, On Sep 8, 2011, at 10:52 AM, Redmond, Paul wrote: > Hi, > > Can anyone point me to some code (or offer advice) on how I can merge one Module into another? > > I have a list of Modules each containing one Function. I would like to combine them all into one monolithic Module before transforming and optimizing (The original Modules must remain unmodified) > See