Displaying 3 results from an estimated 3 matches for "setbyvalattr".
2008 Apr 26
0
[LLVMdev] ParamAttr Patch - Alignment fix
...orate some feedback before
I apply it, though.
> Index: include/llvm/Argument.h
> ===================================================================
> --- include/llvm/Argument.h (revision 50213)
> +++ include/llvm/Argument.h (working copy)
> @@ -60,7 +60,16 @@
> +
> + /// setByValAttr - Set true to give the Argument a byVal attribute.
> + void setByValAttr(bool);
>
> + /// setNoAliasAttr - Set true to give the Argument a noalias
> attribute.
> + void setNoAliasAttr(bool noAlias);
> +
> + /// setStructRetAttr - Set true to give the Argument a sret
>...
2008 Apr 24
2
[LLVMdev] ParamAttr Patch - Alignment fix
Hi..
Updated so you now set alignment through LLVMInstrSetAlignment.
Anders Johnsen
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ParamAttr.patch
Type: text/x-diff
Size: 7420 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080424/cb72b4bb/attachment.patch>
2008 Apr 26
2
[LLVMdev] ParamAttr Patch - Alignment fix
..., though.
>
> > Index: include/llvm/Argument.h
> > ===================================================================
> > --- include/llvm/Argument.h (revision 50213)
> > +++ include/llvm/Argument.h (working copy)
> > @@ -60,7 +60,16 @@
> > +
> > + /// setByValAttr - Set true to give the Argument a byVal attribute.
> > + void setByValAttr(bool);
> >
> > + /// setNoAliasAttr - Set true to give the Argument a noalias
> > attribute.
> > + void setNoAliasAttr(bool noAlias);
> > +
> > + /// setStructRetAttr - Set true...