From 77d69243046ec25bb740fad39c14409d022368a4 Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Tue, 15 Mar 2005 05:19:20 +0000
Subject: [PATCH] methods removed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20602 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/ProgrammersManual.html | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index d4d402ffcdd..0af3a9dac2e 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -1222,7 +1222,7 @@ manually inserted into the Function.
BasicBlock::iterator - Typedef for instruction list iterator
BasicBlock::const_iterator - Typedef for const_iterator.
begin(), end(), front(), back(),
-size(), empty(), rbegin(), rend() -
+size(), empty()
STL-style functions for accessing the instruction list.
These methods and typedefs are forwarding functions that have the same
@@ -1410,8 +1410,8 @@ is its address (after linking) which is guaranteed to be constant.
Function::iterator - Typedef for basic block list iterator
Function::const_iterator - Typedef for const_iterator.
- begin(), end(), front(), back(),
- size(), empty(), rbegin(), rend()
+ begin(), end()
+ size(), empty()
These are forwarding methods that make it easy to access the contents of
a Function object's BasicBlock
@@ -1427,7 +1427,7 @@ is its address (after linking) which is guaranteed to be constant.
iterator
Function::const_arg_iterator - Typedef for const_iterator.
- arg_begin(), arg_end(), arg_front(), arg_back(),
+ arg_begin(), arg_end()
arg_size(), arg_empty()
These are forwarding methods that make it easy to access the contents of
@@ -1572,8 +1572,8 @@ provide a name for it (probably based on the name of the translation unit).
Module::iterator - Typedef for function list iterator
Module::const_iterator - Typedef for const_iterator.
- begin(), end(), front(), back(),
- size(), empty(), rbegin(), rend()
+ begin(), end()
+ size(), empty()
These are forwarding methods that make it easy to access the contents of
a Module object's Function
@@ -1595,7 +1595,7 @@ provide a name for it (probably based on the name of the translation unit).
Module::const_global_iterator - Typedef for const_iterator.
- global_begin(), global_end(), global_front(), global_back(),
+ global_begin(), global_end()
global_size(), global_empty()
These are forwarding methods that make it easy to access the contents of