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

Chris Lattner sabre at nondot.org
Sat Jul 23 12:59:08 PDT 2011


Author: lattner
Date: Sat Jul 23 14:59:08 2011
New Revision: 135861

URL: http://llvm.org/viewvc/llvm-project?rev=135861&view=rev
Log:
clarify that opaque is actually a struct type, PR10430

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=135861&r1=135860&r2=135861&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Sat Jul 23 14:59:08 2011
@@ -75,7 +75,7 @@
             <ol>
               <li><a href="#t_array">Array Type</a></li>
               <li><a href="#t_struct">Structure Type</a></li>
-              <li><a href="#t_opaque">Opaque Type</a></li>
+              <li><a href="#t_opaque">Opaque Structure Types</a></li>
               <li><a href="#t_vector">Vector Type</a></li>
             </ol>
           </li>
@@ -1980,15 +1980,15 @@
   
 <!-- _______________________________________________________________________ -->
 <h4>
-  <a name="t_opaque">Opaque Type</a>
+  <a name="t_opaque">Opaque Structure Types</a>
 </h4>
 
 <div>
 
 <h5>Overview:</h5>
-<p>Opaque types are used to represent named structure types that do not have a
-   body specified.  This corresponds (for example) to the C notion of a forward 
-   declared structure.</p>
+<p>Opaque structure types are used to represent named structure types that do
+   not have a body specified.  This corresponds (for example) to the C notion of
+   a forward declared structure.</p>
 
 <h5>Syntax:</h5>
 <pre>





More information about the llvm-commits mailing list