From 89cc2656ba070434dceeabe95cba0a95b988325b Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Tue, 15 Mar 2005 04:48:32 +0000
Subject: [PATCH] switch from a* to arg_* and g* to global_* for
argument/global var iterators
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20596 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/ProgrammersManual.html | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index f335ddf8d02..d4d402ffcdd 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -1423,12 +1423,12 @@ is its address (after linking) which is guaranteed to be constant.
is necessary to use when you need to update the list or perform a complex
action that doesn't have a forwarding method.
- Function::aiterator - Typedef for the argument list
+ Function::arg_iterator - Typedef for the argument list
iterator
- Function::const_aiterator - Typedef for const_iterator.
+ Function::const_arg_iterator - Typedef for const_iterator.
- abegin(), aend(), afront(), aback(),
- asize(), aempty(), arbegin(), arend()
+ arg_begin(), arg_end(), arg_front(), arg_back(),
+ arg_size(), arg_empty()
These are forwarding methods that make it easy to access the contents of
a Function object's Argument
@@ -1591,12 +1591,12 @@ provide a name for it (probably based on the name of the translation unit).