diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-07 06:24:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-07 06:24:17 +0000 |
commit | e6a7a8585e0e6302424caab3bda7bddf7c527d5a (patch) | |
tree | 44d24d719a9ab41f9d13f3d21c508bee098114da /docs | |
parent | 7f1444bc0aefdd924e9b231e20d4c0529311e141 (diff) | |
download | external_llvm-e6a7a8585e0e6302424caab3bda7bddf7c527d5a.zip external_llvm-e6a7a8585e0e6302424caab3bda7bddf7c527d5a.tar.gz external_llvm-e6a7a8585e0e6302424caab3bda7bddf7c527d5a.tar.bz2 |
remove some obsolete SymbolTable methods. These docs need to be updated
now that PR411 landed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33991 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ProgrammersManual.html | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index c4fedbf..b5b7a9c 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -2122,11 +2122,6 @@ name.</p> have both a name and a type which are extracted and used to place the value in the correct type plane under the value's name.</dd> - <dt><tt>void insert(const std::string& Name, Value *Val)</tt>:</dt> - <dd> Inserts a constant or type into the symbol table with the specified - name. There can be a many to one mapping between names and constants - or types.</dd> - <dt><tt>void remove(Value* Val)</tt>:</dt> <dd> This method removes a named value from the symbol table. The type and name of the Value are extracted from \p N and used to @@ -2134,20 +2129,6 @@ name.</p> not in the symbol table, this method silently ignores the request.</dd> - <dt><tt>Value* remove(const std::string& Name, Value *Val)</tt>:</dt> - <dd> Remove a constant or type with the specified name from the - symbol table.</dd> - - <dt><tt>Value *remove(const value_iterator& It)</tt>:</dt> - <dd> Removes a specific value from the symbol table. - Returns the removed value.</dd> - - <dt><tt>bool strip()</tt>:</dt> - <dd> This method will strip the symbol table of its names leaving - the type and values. </dd> - - <dt><tt>void clear()</tt>:</dt> - <dd>Empty the symbol table completely.</dd> </dl> <h3>Iteration</h3> |