[NFC] Reformat all the LLVMs

Reformatting everything now that we have `llvm` namespaces. I've
separated this from the main commit to help manage merge-conflicts and
for making it a bit easier to read the mega-patch.
This commit is contained in:
Evan Wilde
2023-06-27 08:15:30 -07:00
parent f3ff561c6f
commit 250082df25
416 changed files with 3777 additions and 3734 deletions

View File

@@ -133,7 +133,8 @@ void SwiftLangSupport::performCompile(
std::function<void(const RequestResult<CompilationResult> &)> Receiver) {
std::string error;
auto fileSystem = getFileSystem(vfsOptions, /*primaryFile=*/llvm::None, error);
auto fileSystem =
getFileSystem(vfsOptions, /*primaryFile=*/llvm::None, error);
if (!fileSystem) {
Receiver(RequestResult<CompilationResult>::fromError(error));
return;