diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 00:17:14 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 00:17:14 +0000 |
commit | 221864afe7c0d9b2b659a00e8c53345a6f625378 (patch) | |
tree | 910a959a45b6ef16a5e6d2831c64bdee4eb74d2c /include | |
parent | e03513b6e418341df9f2c18559c3e3557ac9b695 (diff) | |
download | external_llvm-221864afe7c0d9b2b659a00e8c53345a6f625378.zip external_llvm-221864afe7c0d9b2b659a00e8c53345a6f625378.tar.gz external_llvm-221864afe7c0d9b2b659a00e8c53345a6f625378.tar.bz2 |
Remove Value::setName(const char*).
- Split into a separate patch because there is a slight functionality change,
it is no longer valid to call setName(0), which was equivalent to
setName(""). I'm hoping no one depends on this...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77099 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Value.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 584b80e..0ff0f7e 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -130,7 +130,6 @@ public: void setName(const Twine &Name); void setName(const char *Name, unsigned NameLen); - void setName(const char *Name); // Takes a null-terminated string. /// takeName - transfer the name from V to this value, setting V's name to |