Displaying 3 results from an estimated 3 matches for "1936f91d".
2012 Mar 12
0
[LLVMdev] [cfe-dev] Compiling Multiple Files
Hi Ryan,
I see. Well, that shouldn't be an issue. If you link the bitcode files together with llvm-link you can then do several things:
(1) Run clang on it as you normally would with -O3 for maximum inlining
(2) Run 'llc' manually with -O3 and LTO, which will do the maximum link time optimisations.
(3) Run 'opt' manually with -O3, LTO which will produce another bitcode file,
2012 Mar 12
1
[LLVMdev] [cfe-dev] Compiling Multiple Files
...do not disclose the
> contents to any other person, use it for any purpose, or store or copy the
> information in any medium. Thank you.
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120312/1936f91d/attachment.html>
2012 Mar 12
2
[LLVMdev] [cfe-dev] Compiling Multiple Files
James,
Sure. I want to inline functions in a C program that has no external
node, or "main". So the "top" function is not main and there does not exist
a main in the file.
Thanks.
On Mon, Mar 12, 2012 at 11:23 AM, James Molloy <James.Molloy at arm.com> wrote:
> Hi Ryan,
>
> > Do you know if it's possible to inline functions without an external
>