remove the M instance var

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24281 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-11-10 19:02:18 +00:00
parent b8c5ec0869
commit 2f9bc4f2d3

View File

@ -118,8 +118,8 @@ void Mangler::InsertName(GlobalValue *GV,
}
Mangler::Mangler(Module &m, const char *prefix)
: M(m), Prefix(prefix), TypeCounter(0), Count(0) {
Mangler::Mangler(Module &M, const char *prefix)
: Prefix(prefix), Count(0), TypeCounter(0) {
// Calculate which global values have names that will collide when we throw
// away type information.
std::map<std::string, GlobalValue*> Names;