Displaying 2 results from an estimated 2 matches for "10f096f0".
Did you mean:
1000960
2013 Dec 01
0
[LLVMdev] x86: inline an LLVM IR function?
...LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131201/10f096f0/attachment.html>
2013 Dec 01
2
[LLVMdev] x86: inline an LLVM IR function?
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:
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
}
And no matter