search for: setnoaliasattr

Displaying 3 results from an estimated 3 matches for "setnoaliasattr".

2008 Apr 26
0
[LLVMdev] ParamAttr Patch - Alignment fix
...============================================ > --- 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 > attribute. > + void setStructRetAttr(bool byVal); These prototypes are all misleading; the bool value is igno...
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
...==== > > --- 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 > > attribute. > > + void setStructRetAttr(bool byVal); > > These prototypes are all...