[llvm-commits] [llvm] r64088 - /llvm/trunk/docs/LangRef.html

Chris Lattner sabre at nondot.org
Sun Feb 8 11:53:30 PST 2009


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>
+
 <h5>Syntax:</h5>
 <pre>  <type> *<br></pre>
 <h5>Examples:</h5>





More information about the llvm-commits mailing list