aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/Mangler.h
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
commit39f8990394e704c80719de78a636d3b2ea1eaa34 (patch)
treee405cb607fdc9104345c698730c4a7fa7da3dd03 /include/llvm/Support/Mangler.h
parent0250ddee043e93a3c7203c593ff169b1865cd8d5 (diff)
downloadexternal_llvm-39f8990394e704c80719de78a636d3b2ea1eaa34.zip
external_llvm-39f8990394e704c80719de78a636d3b2ea1eaa34.tar.gz
external_llvm-39f8990394e704c80719de78a636d3b2ea1eaa34.tar.bz2
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/llvm/Support/Mangler.h')
-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 1de1905..33ed102 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