add a helper method: Value::takeName

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34171 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2007-02-11 00:37:27 +00:00
parent 9cc2d3dce8
commit 7216811ea2
2 changed files with 36 additions and 18 deletions

View File

@ -88,6 +88,10 @@ public:
inline const std::string &getName() const { return Name; }
void setName(const std::string &name);
/// takeName - transfer the name from V to this value, setting V's name to
/// empty. It is an error to call V->takeName(V).
void takeName(Value *V);
/// replaceAllUsesWith - Go through the uses list for this definition and make
/// each use point to "V" instead of "this". After this completes, 'this's