Skip to content

Commit 33dbf55

Browse files
committed
[DTLTO][LLVM] clang format LTO.h to prevent automated checks errors
Some of the code in LTO.h did not conform to the LLVM coding standard. However, it did match the style already used in that file. However this was causing automated code-formatting checks from Github to fail which was confusing on the PR. I decided to apply clang-format everywhere to prevent this - even though the new code no longer matches the style of the existing.
1 parent 0c46c0c commit 33dbf55

File tree

1 file changed

+5
-8
lines changed
  • llvm/include/llvm/LTO

1 file changed

+5
-8
lines changed

llvm/include/llvm/LTO/LTO.h

+5-8
Original file line numberDiff line numberDiff line change
@@ -318,14 +318,11 @@ ThinBackend createInProcessThinBackend(ThreadPoolStrategy Parallelism,
318318
/// jobs execution.
319319
/// SaveTemps is a debugging tool that prevents temporary files created by this
320320
/// backend from being cleaned up.
321-
ThinBackend createOutOfProcessThinBackend(ThreadPoolStrategy Parallelism,
322-
IndexWriteCallback OnWrite,
323-
bool ShouldEmitIndexFiles,
324-
bool ShouldEmitImportsFiles,
325-
StringRef LinkerOutputFile,
326-
StringRef RemoteOptTool,
327-
StringRef Distributor,
328-
bool SaveTemps);
321+
ThinBackend createOutOfProcessThinBackend(
322+
ThreadPoolStrategy Parallelism, IndexWriteCallback OnWrite,
323+
bool ShouldEmitIndexFiles, bool ShouldEmitImportsFiles,
324+
StringRef LinkerOutputFile, StringRef RemoteOptTool, StringRef Distributor,
325+
bool SaveTemps);
329326

330327
/// This ThinBackend writes individual module indexes to files, instead of
331328
/// running the individual backend jobs. This backend is for distributed builds

0 commit comments

Comments
 (0)