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:
cd484a4
)
- Remove Value::use_push_back & Value::use_remove
author
Chris Lattner
<sabre@nondot.org>
Wed, 9 Oct 2002 00:25:01 +0000
(
00:25
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Wed, 9 Oct 2002 00:25:01 +0000
(
00:25
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4089
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 f8eceb7ec05aac2f43a6fcae08acd175107ede89..e5c975e4a7d5335829dbb58666ee3e83a4630e8f 100644
(file)
--- a/
include/llvm/Value.h
+++ b/
include/llvm/Value.h
@@
-110,9
+110,8
@@
public:
inline User *use_back() { return Uses.back(); }
inline const User *use_back() const { return Uses.back(); }
- inline void use_push_back(User *I) { Uses.push_back(I); }
- User *use_remove(use_iterator &I);
-
+ /// addUse/killUse - These two methods should only be used by the Use class
+ /// below.
inline void addUse(User *I) { Uses.push_back(I); }
void killUse(User *I);
};