mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Fix big bug introduced with symbol table changes
llvm-svn: 4885
This commit is contained in:
parent
5629544811
commit
dd9d97436d
@ -173,7 +173,7 @@ static bool LinkGlobals(Module *Dest, const Module *Src,
|
||||
map<const Value*, Value*> &ValueMap, string *Err = 0) {
|
||||
// We will need a module level symbol table if the src module has a module
|
||||
// level symbol table...
|
||||
SymbolTable *ST = (SymbolTable*)&Src->getSymbolTable();
|
||||
SymbolTable *ST = (SymbolTable*)&Dest->getSymbolTable();
|
||||
|
||||
// Loop over all of the globals in the src module, mapping them over as we go
|
||||
//
|
||||
@ -263,7 +263,7 @@ static bool LinkFunctionProtos(Module *Dest, const Module *Src,
|
||||
string *Err = 0) {
|
||||
// We will need a module level symbol table if the src module has a module
|
||||
// level symbol table...
|
||||
SymbolTable *ST = (SymbolTable*)&Src->getSymbolTable();
|
||||
SymbolTable *ST = (SymbolTable*)&Dest->getSymbolTable();
|
||||
|
||||
// Loop over all of the functions in the src module, mapping them over as we
|
||||
// go
|
||||
|
Loading…
x
Reference in New Issue
Block a user