mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-16 20:40:16 +00:00
Fix a bug caused by change in the interface of Archive::writeToDisk.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29869 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b397d81f03
commit
09069b3bf5
@ -511,7 +511,7 @@ doDelete(std::string* ErrMsg) {
|
||||
}
|
||||
|
||||
// We're done editting, reconstruct the archive.
|
||||
if (!TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
|
||||
if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
|
||||
return true;
|
||||
if (ReallyVerbose)
|
||||
printSymbolTable();
|
||||
@ -566,7 +566,7 @@ doMove(std::string* ErrMsg) {
|
||||
}
|
||||
|
||||
// We're done editting, reconstruct the archive.
|
||||
if (!TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
|
||||
if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
|
||||
return true;
|
||||
if (ReallyVerbose)
|
||||
printSymbolTable();
|
||||
@ -591,7 +591,7 @@ doQuickAppend(std::string* ErrMsg) {
|
||||
}
|
||||
|
||||
// We're done editting, reconstruct the archive.
|
||||
if (!TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
|
||||
if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
|
||||
return true;
|
||||
if (ReallyVerbose)
|
||||
printSymbolTable();
|
||||
@ -688,7 +688,7 @@ doReplaceOrInsert(std::string* ErrMsg) {
|
||||
}
|
||||
|
||||
// We're done editting, reconstruct the archive.
|
||||
if (!TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
|
||||
if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg))
|
||||
return true;
|
||||
if (ReallyVerbose)
|
||||
printSymbolTable();
|
||||
|
Loading…
x
Reference in New Issue
Block a user