Displaying 2 results from an estimated 2 matches for "7ce7b8f4".
2018 May 17
0
How to inline function from other file in IR
..._____________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180516/7ce7b8f4/attachment.html>
2018 May 15
3
How to inline function from other file in IR
Hello,
How can I inline a function mentioned in other file?
I have an inline function *foo* in C source file (a.c) which is not
referenced in this file. I compile this file to a.ll (I notice that the
compiled a.ll doesn't have *foo*'s definition, probably because it was
inlined but not called anywhere)
I have another C source file b.c with function *bar*; I compile this to b.ll
I link