[llvm-commits] [llvm] r64088 - /llvm/trunk/docs/LangRef.html
Nick Lewycky
nicholas at mxc.ca
Sun Feb 8 11:57:15 PST 2009
Chris Lattner wrote:
> Author: lattner
> Date: Sun Feb 8 13:53:29 2009
> New Revision: 64088
>
> URL: http://llvm.org/viewvc/llvm-project?rev=64088&view=rev
> Log:
> document pointer type constraints, PR3513
>
> Modified:
> llvm/trunk/docs/LangRef.html
>
> Modified: llvm/trunk/docs/LangRef.html
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=64088&r1=64087&r2=64088&view=diff
>
> ==============================================================================
> --- llvm/trunk/docs/LangRef.html (original)
> +++ llvm/trunk/docs/LangRef.html Sun Feb 8 13:53:29 2009
> @@ -1561,6 +1561,10 @@
> an optional address space attribute defining the target-specific numbered
> address space where the pointed-to object resides. The default address space is
> zero.</p>
> +
> +<p>Note that LLVM does not permit pointers to void (<tt>void*</tt>) nor does
> +it permit pointers to labels (<tt>label*</tt>). Use <tt>i8*</aa> intead.</p>
Typo: </aa> ? :)
> +
> <h5>Syntax:</h5>
> <pre> <type> *<br></pre>
> <h5>Examples:</h5>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
More information about the llvm-commits
mailing list