1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

document pointer type constraints, PR3513

llvm-svn: 64088
This commit is contained in:
Chris Lattner 2009-02-08 19:53:29 +00:00
parent 848de0c1c5
commit 4a51a59a4b

View File

@ -1561,6 +1561,10 @@ reference to another object, which must live in memory. Pointer types may have
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>
<h5>Syntax:</h5>
<pre> &lt;type&gt; *<br></pre>
<h5>Examples:</h5>