[llvm-commits] CVS: llvm/docs/ProgrammersManual.html
Chris Lattner
lattner at cs.uiuc.edu
Mon Mar 14 20:48:48 PST 2005
Changes in directory llvm/docs:
ProgrammersManual.html updated: 1.77 -> 1.78
---
Log message:
switch from a* to arg_* and g* to global_* for argument/global var iterators
---
Diffs of the changes: (+9 -9)
ProgrammersManual.html | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
Index: llvm/docs/ProgrammersManual.html
diff -u llvm/docs/ProgrammersManual.html:1.77 llvm/docs/ProgrammersManual.html:1.78
--- llvm/docs/ProgrammersManual.html:1.77 Sun Mar 6 00:00:13 2005
+++ llvm/docs/ProgrammersManual.html Mon Mar 14 22:48:32 2005
@@ -1423,12 +1423,12 @@
is necessary to use when you need to update the list or perform a complex
action that doesn't have a forwarding method.</p></li>
- <li><tt>Function::aiterator</tt> - Typedef for the argument list
+ <li><tt>Function::arg_iterator</tt> - Typedef for the argument list
iterator<br>
- <tt>Function::const_aiterator</tt> - Typedef for const_iterator.<br>
+ <tt>Function::const_arg_iterator</tt> - Typedef for const_iterator.<br>
- <tt>abegin()</tt>, <tt>aend()</tt>, <tt>afront()</tt>, <tt>aback()</tt>,
- <tt>asize()</tt>, <tt>aempty()</tt>, <tt>arbegin()</tt>, <tt>arend()</tt>
+ <tt>arg_begin()</tt>, <tt>arg_end()</tt>, <tt>arg_front()</tt>, <tt>arg_back()</tt>,
+ <tt>arg_size()</tt>, <tt>arg_empty()</tt>
<p>These are forwarding methods that make it easy to access the contents of
a <tt>Function</tt> object's <a href="#Argument"><tt>Argument</tt></a>
@@ -1591,12 +1591,12 @@
<hr>
<ul>
- <li><tt>Module::giterator</tt> - Typedef for global variable list iterator<br>
+ <li><tt>Module::global_iterator</tt> - Typedef for global variable list iterator<br>
- <tt>Module::const_giterator</tt> - Typedef for const_iterator.<br>
+ <tt>Module::const_global_iterator</tt> - Typedef for const_iterator.<br>
- <tt>gbegin()</tt>, <tt>gend()</tt>, <tt>gfront()</tt>, <tt>gback()</tt>,
- <tt>gsize()</tt>, <tt>gempty()</tt>, <tt>grbegin()</tt>, <tt>grend()</tt>
+ <tt>global_begin()</tt>, <tt>global_end()</tt>, <tt>global_front()</tt>, <tt>global_back()</tt>,
+ <tt>global_size()</tt>, <tt>global_empty()</tt>
<p> These are forwarding methods that make it easy to access the contents of
a <tt>Module</tt> object's <a
@@ -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/06 06:00:13 $
+ Last modified: $Date: 2005/03/15 04:48:32 $
</address>
</body>
More information about the llvm-commits
mailing list