summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-13 23:50:53 +0000
committerChris Lattner <sabre@nondot.org>2009-07-13 23:50:53 +0000
commit47728a2819b9d0d57b41898d086a1141e54a4c72 (patch)
treee405cb607fdc9104345c698730c4a7fa7da3dd03 /include
parent762717acb165439de535b76ef7ccc83cc798dcaa (diff)
downloadllvm-47728a2819b9d0d57b41898d086a1141e54a4c72.tar.gz
llvm-47728a2819b9d0d57b41898d086a1141e54a4c72.tar.bz2
llvm-47728a2819b9d0d57b41898d086a1141e54a4c72.tar.xz
remove Mangler::getTypeID and related data, it was only used for mangling
local symbols and we haven't had type planes since llvm 1.9. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75558 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Mangler.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h
index 1de1905b60..33ed102002 100644
--- a/include/llvm/Support/Mangler.h
+++ b/include/llvm/Support/Mangler.h
@@ -50,11 +50,6 @@ class Mangler {
///
unsigned Count;
- /// TypeMap - If the client wants us to unique types, this keeps track of the
- /// current assignments and TypeCounter keeps track of the next id to assign.
- DenseMap<const Type*, unsigned> TypeMap;
- unsigned TypeCounter;
-
/// AcceptableChars - This bitfield contains a one for each character that is
/// allowed to be part of an unmangled name.
unsigned AcceptableChars[256/32];
@@ -99,11 +94,6 @@ public:
///
std::string makeNameProper(const std::string &x, const char *Prefix = 0,
const char *PrivatePrefix = 0);
-
-private:
- /// getTypeID - Return a unique ID for the specified LLVM type.
- ///
- unsigned getTypeID(const Type *Ty);
};
} // End llvm namespace