[lld] wasm-ld: Add allow-multiple-definition flag (PR #97699)

via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 8 11:46:16 PDT 2024


================
@@ -797,7 +821,7 @@ static void writeWhyExtract() {
 // Equivalent of demote demoteSharedAndLazySymbols() in the ELF linker
 static void demoteLazySymbols() {
   for (Symbol *sym : symtab->symbols()) {
-    if (auto* s = dyn_cast<LazySymbol>(sym)) {
+    if (auto *s = dyn_cast<LazySymbol>(sym)) {
----------------
poretga99 wrote:

For some reason, `git clang-format origin/main` did not do anything for me on Windows. I force pushed and manually removed the non-related formatted changes.

https://github.com/llvm/llvm-project/pull/97699


More information about the llvm-commits mailing list