bindexplib: Export symbols from objects even with explicit markup

Drop our `HaveExportedObjects` check before dumping exports for an
object file.  It is possible for only a subset of needed symbols to have
explicit markup, and re-exporting the marked symbols does not hurt.

This leaves no callers of `HaveExportedObjects`, but leave the
method in place anyway because it may be useful in the future.

Fixes #16161.
This commit is contained in:
Yury Zhuravlev 2016-06-30 17:19:00 +03:00 committed by Brad King
parent b1883bc8b7
commit f8d4e3d7f8
1 changed files with 1 additions and 3 deletions

View File

@ -244,9 +244,7 @@ public:
*----------------------------------------------------------------------
*/
void DumpObjFile() {
if(!HaveExportedObjects()) {
this->DumpExternalsObjects();
}
this->DumpExternalsObjects();
}
/*