<div dir="ltr">Sorry for what may possibly be a rather stupid question, but how on earth do you make LLC inline a function? I've got this code:<div><br></div><div>
<pre style="color:rgb(0,0,0);font-family:Consolas;font-size:14pt"> attributes 0 = { alwaysinline nounwind }
define internal i32 @lambda(i32 %a, i32 %x) #0 {
%1 = add i32 %a, %x
ret i32 %1
}
define i32 @foo(i32 %a) nounwind {
%1 = call i32 @lambda(i32 %a, i32 10)
ret i32 %1
}
</pre><pre><font face="arial"><span style="white-space:normal">And no matter what I do, the function @lambda ends up being called with a call instruction. I've tried with -O2, -O3, and with and without the alwaysinline attribute.</span></font></pre>
<pre>How do I get LLC or Clang to inline the above @lambda function?</pre><pre>Thanks in advance!</pre><pre><br></pre><pre>-- Mikael</pre><pre style="color:rgb(0,0,0);font-family:Consolas;font-size:14pt"><br></pre></div></div>