diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-13 23:47:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-13 23:47:27 +0000 |
commit | 0250ddee043e93a3c7203c593ff169b1865cd8d5 (patch) | |
tree | 26750517598143c9b57e3696212aeb2e3dc89ec2 /include | |
parent | b66867fb155aa6e2b7ff120cc4835c490d550b63 (diff) | |
download | external_llvm-0250ddee043e93a3c7203c593ff169b1865cd8d5.zip external_llvm-0250ddee043e93a3c7203c593ff169b1865cd8d5.tar.gz external_llvm-0250ddee043e93a3c7203c593ff169b1865cd8d5.tar.bz2 |
remove mangler support for mangling local names. Mangler should only be
used with globals.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75557 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/Mangler.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h index 8f672bd..1de1905 100644 --- a/include/llvm/Support/Mangler.h +++ b/include/llvm/Support/Mangler.h @@ -89,7 +89,6 @@ public: /// in the current module. /// std::string getValueName(const GlobalValue *V, const char *Suffix = ""); - std::string getValueName(const Value *V); /// makeNameProper - We don't want identifier names with ., space, or /// - in them, so we mangle these characters into the strings "d_", |