[WebAssembly] Run clang-format. NFC

llvm-svn: 326896
diff --git a/lld/wasm/Driver.cpp b/lld/wasm/Driver.cpp
index e68a7ce..ef0794c 100644
--- a/lld/wasm/Driver.cpp
+++ b/lld/wasm/Driver.cpp
@@ -310,7 +310,7 @@
                                               &NullSignature);
 
     // Handle the `--undefined <sym>` options.
-    for (auto* Arg : Args.filtered(OPT_undefined))
+    for (auto *Arg : Args.filtered(OPT_undefined))
       Symtab->addUndefinedFunction(Arg->getValue(), 0, nullptr, nullptr);
   }
 
@@ -331,7 +331,7 @@
     // -u/--undefined since these undefined symbols have only names and no
     // function signature, which means they cannot be written to the final
     // output.
-    for (auto* Arg : Args.filtered(OPT_undefined)) {
+    for (auto *Arg : Args.filtered(OPT_undefined)) {
       Symbol *Sym = Symtab->find(Arg->getValue());
       if (!Sym->isDefined())
         error("function forced with --undefined not found: " + Sym->getName());