1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

remove the M instance var

llvm-svn: 24281
This commit is contained in:
Chris Lattner 2005-11-10 19:02:18 +00:00
parent 5b0d543080
commit 6b9d854bad

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;