mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
Fix symbol table problem
llvm-svn: 4785
This commit is contained in:
parent
96283090dc
commit
58944216ff
@ -266,17 +266,16 @@ void MutateStructTypes::processGlobals(Module &M) {
|
|||||||
|
|
||||||
// Remap the symbol table to refer to the types in a nice way
|
// Remap the symbol table to refer to the types in a nice way
|
||||||
//
|
//
|
||||||
if (SymbolTable *ST = M.getSymbolTable()) {
|
SymbolTable &ST = M.getSymbolTable();
|
||||||
SymbolTable::iterator I = ST->find(Type::TypeTy);
|
SymbolTable::iterator I = ST.find(Type::TypeTy);
|
||||||
if (I != ST->end()) { // Get the type plane for Type's
|
if (I != ST.end()) { // Get the type plane for Type's
|
||||||
SymbolTable::VarMap &Plane = I->second;
|
SymbolTable::VarMap &Plane = I->second;
|
||||||
for (SymbolTable::type_iterator TI = Plane.begin(), TE = Plane.end();
|
for (SymbolTable::type_iterator TI = Plane.begin(), TE = Plane.end();
|
||||||
TI != TE; ++TI) {
|
TI != TE; ++TI) {
|
||||||
// FIXME: This is gross, I'm reaching right into a symbol table and
|
// FIXME: This is gross, I'm reaching right into a symbol table and
|
||||||
// mucking around with it's internals... but oh well.
|
// mucking around with it's internals... but oh well.
|
||||||
//
|
//
|
||||||
TI->second = (Value*)cast<Type>(ConvertType(cast<Type>(TI->second)));
|
TI->second = (Value*)cast<Type>(ConvertType(cast<Type>(TI->second)));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user