search for: 7ab53052

Displaying 2 results from an estimated 2 matches for "7ab53052".

2009 May 05
0
[LLVMdev] Pass to remove unused functions
...es functions from the compilation unit > instead of instructions. > The -globaldce pass will remove dead internal globals and functions. -Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090505/7ab53052/attachment.html>
2009 May 05
2
[LLVMdev] Pass to remove unused functions
In order to handle a large vector based math library I link in a fairly large bitcode file that might or might not be needed. The problem is that linking in this bitcode file drastically increases the amount of compile time required. Is there a way to remove all functions that are not used after this linking pass? Something similar to die but removes functions from the compilation unit instead of