[llvm-commits] CVS: llvm/docs/ProgrammersManual.html

Chris Lattner lattner at cs.uiuc.edu
Mon Mar 14 21:19:34 PST 2005



Changes in directory llvm/docs:

ProgrammersManual.html updated: 1.78 -> 1.79
---
Log message:

methods removed.


---
Diffs of the changes:  (+8 -8)

 ProgrammersManual.html |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)


Index: llvm/docs/ProgrammersManual.html
diff -u llvm/docs/ProgrammersManual.html:1.78 llvm/docs/ProgrammersManual.html:1.79
--- llvm/docs/ProgrammersManual.html:1.78	Mon Mar 14 22:48:32 2005
+++ llvm/docs/ProgrammersManual.html	Mon Mar 14 23:19:20 2005
@@ -1222,7 +1222,7 @@
 <li><tt>BasicBlock::iterator</tt> - Typedef for instruction list iterator<br>
 <tt>BasicBlock::const_iterator</tt> - Typedef for const_iterator.<br>
 <tt>begin()</tt>, <tt>end()</tt>, <tt>front()</tt>, <tt>back()</tt>,
-<tt>size()</tt>, <tt>empty()</tt>, <tt>rbegin()</tt>, <tt>rend()</tt> -
+<tt>size()</tt>, <tt>empty()</tt>
 STL-style functions for accessing the instruction list.
 
 <p>These methods and typedefs are forwarding functions that have the same
@@ -1410,8 +1410,8 @@
   <li><tt>Function::iterator</tt> - Typedef for basic block list iterator<br>
     <tt>Function::const_iterator</tt> - Typedef for const_iterator.<br>
 
-    <tt>begin()</tt>, <tt>end()</tt>, <tt>front()</tt>, <tt>back()</tt>,
-    <tt>size()</tt>, <tt>empty()</tt>, <tt>rbegin()</tt>, <tt>rend()</tt>
+    <tt>begin()</tt>, <tt>end()</tt>
+    <tt>size()</tt>, <tt>empty()</tt>
 
     <p>These are forwarding methods that make it easy to access the contents of
     a <tt>Function</tt> object's <a href="#BasicBlock"><tt>BasicBlock</tt></a>
@@ -1427,7 +1427,7 @@
 iterator<br>
     <tt>Function::const_arg_iterator</tt> - Typedef for const_iterator.<br>
 
-    <tt>arg_begin()</tt>, <tt>arg_end()</tt>, <tt>arg_front()</tt>, <tt>arg_back()</tt>,
+    <tt>arg_begin()</tt>, <tt>arg_end()</tt>
     <tt>arg_size()</tt>, <tt>arg_empty()</tt>
 
     <p>These are forwarding methods that make it easy to access the contents of
@@ -1572,8 +1572,8 @@
   <li><tt>Module::iterator</tt> - Typedef for function list iterator<br>
     <tt>Module::const_iterator</tt> - Typedef for const_iterator.<br>
 
-    <tt>begin()</tt>, <tt>end()</tt>, <tt>front()</tt>, <tt>back()</tt>,
-    <tt>size()</tt>, <tt>empty()</tt>, <tt>rbegin()</tt>, <tt>rend()</tt>
+    <tt>begin()</tt>, <tt>end()</tt>
+    <tt>size()</tt>, <tt>empty()</tt>
 
     <p>These are forwarding methods that make it easy to access the contents of
     a <tt>Module</tt> object's <a href="#Function"><tt>Function</tt></a>
@@ -1595,7 +1595,7 @@
 
     <tt>Module::const_global_iterator</tt> - Typedef for const_iterator.<br>
 
-    <tt>global_begin()</tt>, <tt>global_end()</tt>, <tt>global_front()</tt>, <tt>global_back()</tt>,
+    <tt>global_begin()</tt>, <tt>global_end()</tt>
     <tt>global_size()</tt>, <tt>global_empty()</tt>
 
     <p> These are forwarding methods that make it easy to access the contents of
@@ -2049,7 +2049,7 @@
   <a href="mailto:dhurjati at cs.uiuc.edu">Dinakar Dhurjati</a> and
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2005/03/15 04:48:32 $
+  Last modified: $Date: 2005/03/15 05:19:20 $
 </address>
 
 </body>






More information about the llvm-commits mailing list