projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60d97d4
)
Make ValueSymbolTable (temporarily) a friend of Value so it can mod the
author
Reid Spencer
<rspencer@reidspencer.com>
Tue, 10 Jan 2006 09:45:57 +0000
(09:45 +0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Tue, 10 Jan 2006 09:45:57 +0000
(09:45 +0000)
Name of Value instances.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25174
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Value.h
patch
|
blob
|
history
diff --git
a/include/llvm/Value.h
b/include/llvm/Value.h
index 8b6601d6959b4db4dfcdeefbe7ff30ed6f1c1a9b..80ff9c6847633bcd6b89879ddab57ba6b8fa8df8 100644
(file)
--- a/
include/llvm/Value.h
+++ b/
include/llvm/Value.h
@@
-51,7
+51,8
@@
private:
PATypeHolder Ty;
Use *UseList;
- friend class SymbolTable; // Allow SymbolTable to directly poke Name.
+ friend class ValueSymbolTable; // Allow ValueSymbolTable to directly mod Name.
+ friend class SymbolTable; // Allow SymbolTable to directly poke Name.
std::string Name;
void operator=(const Value &); // Do not implement