Displaying 3 results from an estimated 3 matches for "0a73a699".
2018 May 17
0
How to inline function from other file in IR
Hi Soham,
Are you intending to use the inline keyword in order to control the
inlining optimization?
The inline keyword is not doing this, it is changing the linkage type of
the symbol and instruct the compiler to discard it if there is no call
left, and also will instruct the linker to deduplicate. For instance if
multiple file include a header that defines an inline function, this
function
2018 May 17
1
How to inline function from other file in IR
...LLVM Developers mailing list
llvm-dev at lists.llvm.org<mailto: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/20180517/0a73a699/attachment-0001.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