Displaying 2 results from an estimated 2 matches for "720877dd".
2009 May 05
0
[LLVMdev] Pass to remove unused functions
...between modules etc. Alternatively, you can link the two
modules and mark the functions you don't want as internal, then use
globaldce.
-Chris
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090505/720877dd/attachment.html>
2009 May 05
2
[LLVMdev] Pass to remove unused functions
I thought this pass would do it, but when I run it over my bc file the
output file is the same as the input file.
The issue I guess is a little different. When I link in the huge bc
file with the tiny bc file, I only want the resulting bc file to have
the function definitions that the tiny bc file requires and not every
function in the huge bc file.
Any idea's how to do this with the