mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Fix the big regression that has been killing the nightly tester these last
few days. Apparently the old symbol table used to auto rename collisions in the type symbol table and the new one does not. It doesn't really make sense for the new one to do so, so we just make the client do it. llvm-svn: 13877
This commit is contained in:
parent
9bf4cbeb4b
commit
a49f11bec4
@ -236,10 +236,12 @@ bool CBackendNameAllUsedStructs::run(Module &M) {
|
||||
// structure types.
|
||||
//
|
||||
bool Changed = false;
|
||||
unsigned RenameCounter = 0;
|
||||
for (std::set<const Type *>::const_iterator I = UT.begin(), E = UT.end();
|
||||
I != E; ++I)
|
||||
if (const StructType *ST = dyn_cast<StructType>(*I)) {
|
||||
const_cast<StructType*>(ST)->setName("unnamed", &MST);
|
||||
while (M.addTypeName("unnamed"+utostr(RenameCounter), ST))
|
||||
++RenameCounter;
|
||||
Changed = true;
|
||||
}
|
||||
return Changed;
|
||||
|
Loading…
Reference in New Issue
Block a user