Displaying 2 results from an estimated 2 matches for "7459f9af".
2008 Jul 04
0
[LLVMdev] Exact meaning of byval
Matthijs Kooijman wrote:
> Hi,
>
> after working with llvm for a while, I'm still a little confused with the
> meaning of the 'byval' attribute. From the langref:
>
> "This indicates that the pointer parameter should really be passed by value to
> the function. The attribute implies that a hidden copy of the pointee is made
> between the caller and the
2008 Jul 04
4
[LLVMdev] Exact meaning of byval
Hi,
after working with llvm for a while, I'm still a little confused with the
meaning of the 'byval' attribute. From the langref:
"This indicates that the pointer parameter should really be passed by value to
the function. The attribute implies that a hidden copy of the pointee is made
between the caller and the callee, so the callee is unable to modify the value
in the callee.