From e68c2b15b4961aa1bee12dc638ade5ff34c00039 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 26 Feb 2018 15:55:44 -0600 Subject: [PATCH] update-format --- libs/all/Allexe.cpp | 2 +- tools/wllvm-extract/wllvm-extract.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/all/Allexe.cpp b/libs/all/Allexe.cpp index 98aa63c7..43632351 100644 --- a/libs/all/Allexe.cpp +++ b/libs/all/Allexe.cpp @@ -25,7 +25,7 @@ static std::unique_ptr moduleToBuffer(const Module *M) { false, // ShouldPreserveUseListOrder nullptr, // ModuleSummaryIndex (ThinLTO) true // Generate Hash - ); + ); return MemoryBuffer::getMemBufferCopy(OS.str()); } diff --git a/tools/wllvm-extract/wllvm-extract.cpp b/tools/wllvm-extract/wllvm-extract.cpp index 44e93df4..65d01a2e 100644 --- a/tools/wllvm-extract/wllvm-extract.cpp +++ b/tools/wllvm-extract/wllvm-extract.cpp @@ -109,7 +109,7 @@ static Error writeAsSingleBC(const WLLVMFile &File, StringRef Filename) { false, // ShouldPreserveUseListOrder nullptr, // ModuleSummaryIndex (ThinLTO) true // Generate Hash - ); + ); // We made it this far without error, keep the result. Out->keep(); return Error::success();