[lld][WebAssembly] Remove redundant config setting

Unresolved symbols are not currently reported when building with
`-shared` or `-pie` so setting unresolvedSymbols doesn't have any
effect.

Differential Revision: https://reviews.llvm.org/D117737
This commit is contained in:
Sam Clegg 2022-01-19 18:17:08 -08:00
parent 8457b61699
commit ac2f3df839
1 changed files with 0 additions and 1 deletions

View File

@ -474,7 +474,6 @@ static void setConfigs() {
if (config->shared) {
config->importMemory = true;
config->importUndefined = true;
config->unresolvedSymbols = UnresolvedPolicy::Ignore;
}
}